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

49 lines
1.9 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-12-11 08:27:29 +00:00
"build-js": "./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",
2015-12-28 11:50:33 +00:00
"build-fonts": "cp -R node_modules/bootstrap/dist/fonts static/build/ && cp -R node_modules/ionicons/fonts static/build/ ",
2015-10-19 13:04:49 +01:00
"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-12-09 18:45:28 +00:00
"animate.css": "=3.4.0",
"bootstrap": "=3.3.5",
2015-12-28 11:50:33 +00:00
"ionicons": "=2.0.1",
2015-12-09 18:45:28 +00:00
"jquery": "=2.1.4",
"markdown": "=0.5.0",
"normalize.css": "=3.0.3",
"react": "=0.13.3",
"react-bootstrap": "=0.25.1"
2015-10-19 13:04:49 +01:00
},
"devDependencies": {
2015-12-09 18:45:28 +00:00
"babel-preset-es2015": "=6.1.18",
"babel-preset-react": "=6.1.18",
"babelify": "=7.2.0",
"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-12-09 18:45:28 +00:00
"eslint-plugin-react": "=3.4.2",
2015-12-28 11:50:33 +00:00
"less": "=2.5.1",
"less-mixins": "git://github.com/RealOrangeOne/less-mixins.git",
2015-12-09 18:45:28 +00:00
"react-tools": "=0.13.2",
"uglify-js": "=2.4.24",
"watch": "=0.16.0"
2015-10-19 13:04:49 +01:00
}
}