-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "next-webrtc",
"private": true,
"version": "1.0.0",
"description": "a Sails application",
"keywords": [],
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/rascarlito/next-webrtc.git"
},
"author": "rascarlito",
"license": "MIT",
"scripts": {
"debug": "node debug app.js",
"start": "node app.js",
"build": "rimraf .next && next build",
"prod": "NODE_ENV=production node app.js",
"lint": "standard | snazzy",
"lint-fix": "standard --fix | snazzy",
"deploy": "pm2 deploy production",
"pm2-restart": "pm2 startOrRestart ecosystem.config.js --env production"
},
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.5",
"form-serialize": "^0.7.2",
"include-all": "^1.0.0",
"lodash": "^4.17.4",
"mobx": "^3.3.2",
"mobx-react": "^4.3.5",
"next": "^4.1.4",
"rc": "1.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sails": "~0.12.8",
"sails-disk": "~0.10.9",
"sails-hook-next": "^1.1.0",
"sails.io.js": "^1.1.13",
"simple-peer": "^8.1.1",
"socket.io": "^2.0.4",
"url-composer": "^1.14.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"mobx-react-devtools": "^4.2.15",
"node-sass": "^4.6.0",
"pm2": "^2.8.0",
"rimraf": "^2.6.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"styled-jsx-plugin-sass": "^0.2.1"
},
"standard": {
"parser": "babel-eslint"
}
}