-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.24 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
{
"name": "hackwiki",
"version": "0.0.1",
"author": "Thorben Dittmar <[email protected]>",
"private": true,
"scripts": {
"dev": "node server/index.js",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"bundle": "cross-env ANALYZE=1 next build"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.5",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"axios": "^0.18.0",
"compression": "^1.7.3",
"cors": "^2.8.3",
"cross-env": "^5.1.6",
"express": "^4.15.3",
"feather-icons": "^4.7.3",
"feathers-nedb": "^2.7.0",
"helmet": "^3.13.0",
"immutable": "^3.8.2",
"is-hotkey": "^0.1.3",
"nedb": "^1.8.0",
"next": "^6.1.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"slate": "^0.34.7",
"slate-auto-replace": "^0.9.1",
"slate-react": "^0.12.11",
"source-map-support": "^0.4.15",
"winston": "^2.3.1"
},
"devDependencies": {
"webpack-bundle-analyzer": "^2.13.1"
}
}