-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
{
"name": "fatt2",
"version": "1.0.0",
"private": true,
"engines": {
"node": "4.2.x"
},
"main": "server/app.js",
"scripts": {
"dev": "webpack --watch & http-server dist-local -p 4849",
"test": "mocha ./src-client/tests/.setup.js ./src-client/tests/**/*spec.jsx",
"build": "webpack",
"watch": "webpack --watch",
"publish": "rm -rf dist-live && ENV=live webpack && rsync -avz --delete ./dist-live/ sam@helium:~/webs/apps.codeite.net/static/fatt2",
"deploy": "npm run publish"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"before",
"it"
]
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"create-react-class": "^15.6.2",
"enzyme": "^2.7.1",
"http-server": "^0.9.0",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"must": "^0.13.4",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-element-to-jsx-string": "^6.0.0",
"react-router-dom": "^4.1.1",
"sinon": "^1.17.7",
"standard": "^8.6.0",
"webpack": "^1.14.0",
"webpack-split-by-path": "0.0.10"
}
}