-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
{
"name": "focuspro",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"engine": {
"node": ">= 6.9.0"
},
"scripts": {
"start": "node server/server.js",
"test": "jest client/src/* && mocha server/test/*.js",
"test:frontend": "jest client/*",
"test:backend": "mocha server/test/*.js",
"cover:frontend": "jest client/* --coverage",
"cover:backend": "istanbul cover _mocha -- server/test/*.js -R spec ",
"devstart": "nodemon server/server.js",
"heroku-postbuild": "webpack -p --config ./webpack.prod.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngineerFocus/FocusPro.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EngineerFocus/FocusPro/issues"
},
"homepage": "https://github.com/EngineerFocus/FocusPro#readme",
"dependencies": {
"auth0-lock": "^10.11.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"body-parser": "^1.16.1",
"cron": "^1.2.1",
"express": "^4.14.1",
"fs": "0.0.1-security",
"handlebars": "^4.0.6",
"istanbul": "^0.4.5",
"moment": "^2.17.1",
"nodemailer": "^3.1.3",
"pg": "^6.1.2",
"rc-progress": "^2.0.6",
"react": "^15.4.2",
"react-bootstrap-table": "^3.1.0",
"react-dom": "^15.4.2",
"react-ga": "^2.1.2",
"react-materialize": "^0.18.1",
"react-nouislider": "^1.14.2",
"react-router": "^3.0.2",
"recharts": "^0.20.8",
"sequelize": "^3.30.2",
"twilio": "^2.11.1",
"uglifyjs": "^2.4.10",
"underscore": "^1.8.3",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-dynamic-import-node": "^1.0.0",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"supertest": "^3.0.0",
"webpack-dev-server": "^1.14.0"
}
}