-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "TaskTracker",
"version": "0.0.1",
"description": "Task Chain Tracking Application",
"private": true,
"author": "Kyle Becker, Zach Miller, Cole Waltz",
"main": "bin/www",
"repository": {
"type": "git",
"url": "https://github.com/kmbecker/TaskTracker.git"
},
"scripts": {
"start": "node bin/www",
"build": "run-s webpack:prod node:prod",
"dev": "run-p webpack:dev node:dev",
"webpack:prod": "webpack -p",
"webpack:dev": "webpack --watch",
"node:prod": "cross-env NODE_ENV=production node bin/www",
"node:dev": "nodemon bin/www --watch build"
},
"dependencies": {
"ajv": "^6.2.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"eslint": "^4.18.2",
"express": "^4.16.2",
"express-session": "^1.15.6",
"is-typedarray": "^1.0.0",
"moment": "^2.19.3",
"moment-timezone": "^0.5.13",
"mongoose": "^4.13.11",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.9.0",
"npm-run-all": "^4.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"pug": "^2.0.0-rc.3",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.23.6",
"cross-env": "^5.0.3",
"css-loader": "^0.28.4",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-refetch": "^1.0.0",
"react-spinkit": "^3.0.0",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
}
}