-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "firestone-view",
"version": "1.0.0",
"description": "The web client of the firestone game.",
"repository": {
"type": "git",
"url": "https://github.com/wnr/firestone-view.git"
},
"bugs": {
"url": "https://github.com/wnr/firestone-view/issues"
},
"homepage": "https://github.com/wnr/firestone-view",
"scripts": {
"test": "npm run lint -s",
"lint": "eslint src/**/*.js",
"clean": "rimraf build",
"prebuild": "rimraf build && mkdirp build",
"build": "npm run build:css -s && npm run build:js -s",
"build:js": "browserify --outfile build/index.js -d src/index.js",
"build:css": "node-sass src/index.scss build/index.css -s && postcss --use autoprefixer -o build/index.css build/index.css",
"serve": "npm run build && echo \"\n\" && node ./tools/server.js",
"watch": "parallelshell 'npm run watch:js' 'npm run watch:css' 'npm run watch:test'",
"watch:js": "npm run build:js -s && watchify --outfile build/index.js -d src/index.js",
"watch:css": "nodemon -q -w src --ext '.scss' --exec 'npm run build:css'",
"watch:test": "nodemon -q -w src --ext '.js' --exec 'npm run test'"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"classnames": "^2.2.3",
"eslint": "^2.3.0",
"eslint-plugin-react": "^4.2.1",
"mkdirp": "^0.5.1",
"node-sass": "^3.7.0",
"nodemon": "^1.9.1",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.5.1",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"watchify": "^3.7.0"
}
}