-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.67 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
{
"name": "nextjs-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --names \"tsc,nodemon\" \"tsc --pretty --watch\" \"nodemon --watch server.js --watch front/custom-routes.js --watch api --watch config server.js\"",
"prebuild": "tsc --outDir .dist && yarn copy-static-assets",
"build": "next build .dist/front",
"start": "NODE_ENV=production node server.js",
"copy-static-assets": "ts-node copyStaticAssets.ts"
},
"now": {
"alias": "sd-scheduler.com",
"dotenv": ".env.production",
"public": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/immutable": "^3.8.7",
"@types/nodemailer": "^4.3.2",
"antd": "^3.1.0",
"babel-plugin-import": "^1.6.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"bson-objectid": "^1.2.2",
"connect-mongo": "^2.0.1",
"cookie": "^0.3.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"immutable": "^3.8.2",
"isomorphic-unfetch": "^2.0.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"mongoose": "^5.0.0",
"mongoose-lifecycle": "^1.0.0",
"mongoose-unique-validator": "^2.0.0",
"multer": "^1.3.0",
"next": "^4.2.1",
"nodemailer": "^4.4.2",
"nprogress": "^0.2.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"randomcolor": "^0.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rxjs": "^5.5.6",
"shelljs": "^0.7.8",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"xlsx": "^0.12.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/cookie": "^0.3.1",
"@types/express": "^4.11.0",
"@types/js-cookie": "^2.1.0",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash": "^4.14.106",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.3",
"@types/mongoose": "^4.7.32",
"@types/multer": "^1.3.6",
"@types/next": "^2.4.7",
"@types/nprogress": "^0.0.29",
"@types/passport": "^0.4.2",
"@types/passport-local": "^1.0.32",
"@types/randomcolor": "^0.4.3",
"@types/react": "^16.0.31",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"@types/styled-jsx": "^2.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-define": "^1.3.0",
"concurrently": "^3.5.1",
"dotenv": "^5.0.0",
"nodemon": "^1.14.11",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}