-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 918 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
{
"name": "long-distance-server",
"version": "0.0.8",
"description": "Long Distance Netflix extension server",
"main": "server.js",
"scripts": {
"test": "mocha 'test/**/*.spec.js' --exit",
"start": "node server/server.js",
"build": "webpack --prod",
"dev": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "https://github.com/jonnylin13/LongDistance.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"human-readable-ids": "^1.0.4",
"ws": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"copy-webpack-plugin": "^4.6.0",
"mocha": "^6.1.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
}
}