-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "faceomatic",
"version": "1.0.0",
"repository": "slifty/",
"author": "Dan Schultz - @slifty",
"license": "Apache-2.0",
"browserslist": [
"> 1%"
],
"engines": {
"node": "7.x",
"yarn": "0.20.3"
},
"scripts": {
"start": "yarn dev:start",
"dev:start": "nodemon -e js,jsx --ignore lib --ignore dist --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress",
"prod:build": "rimraf lib && babel src -d lib --copy-files",
"prod:start": "cross-env NODE_ENV=production pm2 start lib/server --name faceomatic && pm2 logs",
"prod:stop": "pm2 delete faceomatic",
"lint": "eslint src webpack.config.babel.js --ext .js,.jsx",
"test": "yarn lint && jest --coverage",
"precommit": "yarn test",
"prepush": "yarn test && yarn prod:build"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bootstrap": "4.0.0-alpha.6",
"compression": "^1.6.2",
"csv": "^1.1.1",
"dotenv": "^4.0.0",
"express": "^4.15.0",
"immutable": "^4.0.0-rc.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"moment": "^2.18.1",
"node-schedule": "^1.2.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-jss": "^5.3.0",
"react-redux": "^5.0.3",
"react-router": "4.0.0-beta.7",
"react-router-dom": "4.0.0-beta.7",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"tether": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-preset-env": "^1.2.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.23.0",
"coveralls": "^2.12.0",
"cross-env": "^3.2.3",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-compat": "^1.0.2",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"fetch-mock": "^5.9.4",
"flow-bin": "^0.41.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"pm2": "^2.5.0",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}