1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/package.json

48 lines
1.8 KiB
JSON
Raw Normal View History

2015-10-19 13:04:49 +01:00
{
"name": "TheOrangeOne-Site",
"version": "0.0.1",
"description": "TheOrangeOne.net site",
"main": "app.js",
"scripts": {
2015-11-23 14:32:09 +00:00
"lint": "eslint -c node_modules/eslint-config/.eslintrc 'static/src/js/'",
2015-10-19 13:04:49 +01:00
"build-js": "bash scripts/build-js.sh",
2015-11-09 14:13:17 +00:00
"create-build-dirs": "mkdir -p static/build/js/lib static/build/fonts static/build/css static/build/img",
2015-10-19 13:04:49 +01:00
"build": "npm run create-build-dirs && npm run build-fonts && npm run build-images && npm run build-js && npm run build-less",
"build-less": "lessc --silent static/src/less/style.less static/build/css/style.css && cleancss -d --s0 -o static/build/css/style.css static/build/css/style.css",
"build-fonts": "cp -R node_modules/bootstrap/dist/fonts static/build/ && cp -R node_modules/ionicons-pre/fonts static/build/ ",
"build-images": "cp -r static/src/img/* static/build/img/",
"watch-less": "watch 'npm run build-less' static/src/less/",
"watch": "npm run watch-less & npm run watch-images",
2015-11-23 14:33:03 +00:00
"clean": "rm -rf static/build collected-static/ node_modules/ env/",
2015-11-23 18:46:38 +00:00
"test": "npm run lint && echo 'All NPM Tests Passed!'"
2015-10-19 13:04:49 +01:00
},
"repository": {
"type": "git",
2015-10-19 13:07:00 +01:00
"url": "https://github.com/RealOrangeOne/theorangeone.net"
2015-10-19 13:04:49 +01:00
},
"dependencies": {
2015-11-09 13:19:34 +00:00
"animate.css": "^3.4.0",
2015-10-19 13:04:49 +01:00
"bootstrap": "^3.3.5",
2015-11-09 13:19:34 +00:00
"ionicons-pre": "^1.0.0-pre",
2015-10-19 13:04:49 +01:00
"jquery": "^2.1.4",
"less": "^2.5.1",
"markdown": "^0.5.0",
2015-11-09 13:27:06 +00:00
"normalize.css": "^3.0.3",
2015-10-19 13:04:49 +01:00
"react": "^0.13.3",
"react-bootstrap": "^0.25.1"
2015-10-19 13:04:49 +01:00
},
"devDependencies": {
2015-11-23 14:21:04 +00:00
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
2015-10-19 13:04:49 +01:00
"browserify": "^11.0.1",
"clean-css": "^3.4.1",
"eslint": "^1.5.0",
2015-11-23 14:32:09 +00:00
"eslint-config": "git://github.com/dabapps/eslint-config.git",
2015-10-19 13:04:49 +01:00
"eslint-plugin-react": "^3.4.2",
"react-tools": "^0.13.2",
"uglify-js": "^2.4.24",
"watch": "^0.16.0"
}
}