-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1005 Bytes
/
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
{
"name": "ncfd",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"formik": "^2.1.5",
"fs-extra": "^9.0.1",
"keygrip": "^1.1.0",
"moment": "^2.27.0",
"moment-duration-format": "^2.3.2",
"mongoose": "^5.9.26",
"next": "^9.5.1",
"qs": "^6.9.4",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-faq-component": "^1.0.8",
"shortid": "^2.2.15",
"swr": "^0.3.0",
"tabler-react": "^1.30.1"
},
"scripts": {
"dev": "nodemon server",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"nodemonConfig": {
"ignore": [
"node_modules/*",
"test/*",
".next/*",
"public/*",
"data/*",
"src/*"
]
}
}