-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.05 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "cpceed-web-app",
"version": "0.0.0",
"description": "Time logging app for the CPCEED program at Texas Tech University",
"main": "src/index.jsx",
"scripts": {
"prod": "npm-run-all prod-app prod-api",
"prod-app": "webpack --env=prod",
"prod-api": "cross-env NODE_ENV=prod node server.js",
"dev": "npm-run-all --parallel dev-api dev-app",
"dev-app": "webpack-dev-server --env=dev",
"dev-api": "cross-env NODE_ENV=dev node server.js",
"test": "npm-run-all --parallel --continue-on-error test-app test-api",
"test-app": "karma start karma.conf.js",
"test-api": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --recursive test/api/api-test-globals.js test/api",
"lint": "node_modules/.bin/eslint src test api",
"docs": "node_modules/.bin/esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TTUSDC/CPCEEDWebApp.git"
},
"author": "TTU SDC",
"license": "ISC",
"bugs": {
"url": "https://github.com/TTUSDC/CPCEEDWebApp/issues"
},
"homepage": "https://github.com/TTUSDC/CPCEEDWebApp#readme",
"dependencies": {
"app-module-path": "2.2.0",
"axios": "0.16.1",
"bcrypt": "1.0.2",
"body-parser": "1.17.1",
"connect-mongo": "1.3.2",
"cors": "2.8.3",
"cross-env": "5.0.5",
"dotenv": "4.0.0",
"express": "4.15.3",
"express-session": "1.15.5",
"firebase": "3.6.4",
"grommet": "1.4.0",
"immutability-helper": "2.1.2",
"loglevel": "1.4.1",
"mongoose": "4.9.9",
"morgan": "1.8.1",
"passport": "0.3.2",
"passport-local": "1.0.0",
"prop-types": "^15.5.10",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.5",
"react-router-dom": "4.1.1",
"redux": "3.6.0",
"winston": "2.3.1"
},
"devDependencies": {
"async": "2.4.0",
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"chai": "3.5.0",
"chai-moment": "0.1.0",
"chai-shallow-deep-equal": "1.4.6",
"css-loader": "0.26.1",
"enzyme": "2.8.2",
"esdoc": "0.5.2",
"esdoc-node": "1.0.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-chai-friendly": "0.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"file-loader": "0.9.0",
"karma": "1.5.0",
"karma-firefox-launcher": "1.0.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mocha": "3.2.0",
"mockery": "2.0.0",
"mockgoose": "5.3.3",
"node-sass": "4.1.1",
"npm-run-all": "4.0.2",
"react-addons-test-utils": "15.5.1",
"react-test-renderer": "15.5.4",
"sass-loader": "4.1.1",
"sinon": "2.3.1",
"sinon-chai": "2.10.0",
"style-loader": "0.13.1",
"supertest": "3.0.0",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"webpack-merge": "3.0.0"
}
}