forked from jamesjsewell/sifter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sifter",
"version": "1.0.0",
"description": "welcome to sifter, this application is meant to test the aptitude of prospective mine controllers who will be working from the IROC. The IROC is a sort of \"mission control\" for BHP mining operations in Perth, Australia and expanding.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run watch",
"stop": "bash kill.sh",
"watch": "npm run watch-js && npm run watch-css && echo '\n\n===== watching js and scss files in src/, writing changes to dist/ =====\n\n'",
"watch-js": "./node_modules/.bin/rollup -c -w",
"watch-css": "./node_modules/.bin/node-sass -w --output-style compressed ./style.scss ./style.css&",
"build": "echo '\n\n===== building js and scss files for production =====\n\n' && npm run build-js && npm run build-css",
"build-js": "NODE_ENV=production ./node_modules/.bin/rollup -c",
"build-css": "node-sass --output-style compressed style.scss ./style.scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesjsewell/sifter.git"
},
"keywords": [
"bhp",
"unearthed",
"digital",
"tribes"
],
"author": "james sewell",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesjsewell/sifter/issues"
},
"homepage": "https://github.com/jamesjsewell/sifter#readme",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"connect": "^3.6.6",
"express": "^4.16.2",
"node-sass": "^4.7.2",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1",
"watchify": "^3.10.0"
}
}