-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.56 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
{
"name": "my-version",
"version": "0.0.1",
"description": "",
"main": "server.js",
"scripts": {
"start": "node build/server/server.js",
"build": "npm-run-all -p build-js build-css",
"watch": "npm-run-all -r -p watch-*",
"watch-node": "nodemon build/server/server.js",
"build-css": "npm-run-all css-compile css-prefix",
"css-compile": "node-sass --output-style expanded --source-map true public/scss/ -o public/css/",
"css-prefix": "postcss public/css/*.css --replace --use autoprefixer",
"css-lint": "stylelint \"public/**/*.scss\"",
"watch-css": "nodemon --watch public/scss/ --ext scss --exec \"npm run build-css\"",
"build-js": "npm-run-all build-ts build-browserify",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-browserify": "browserify ./build/client/main.js -t [ envify purge --STUN_URL $STUN_URL --TRACKER_URL $TRACKER_URL ] -o ./public/js/bundle.js",
"watch-browserify": "watchify ./build/client/main.js -t [ envify purge --STUN_URL $STUN_URL --TRACKER_URL $TRACKER_URL ] -o ./public/js/bundle.js",
"lint": "eslint --fix src/**/*.ts",
"export": "export STUN_URL=\"vm2-internal.devclub.in\"; export TRACKER_URL=\"vm2-internal.devclub.in\""
},
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"file-saver": "^2.0.2",
"jszip": "^3.2.1",
"node": "^12.5.0",
"socket.io": "^2.2.0",
"webtorrent": "^0.107.6"
},
"devDependencies": {
"@types/bittorrent-protocol": "^2.2.3",
"@types/body-parser": "^1.17.0",
"@types/debug": "^4.1.4",
"@types/events": "^3.0.0",
"@types/express": "^4.17.0",
"@types/file-saver": "^2.0.1",
"@types/jquery": "^3.3.30",
"@types/jszip": "^3.1.6",
"@types/node": "^12.0.10",
"@types/parse-torrent": "^5.8.3",
"@types/simple-peer": "^6.1.6",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"autoprefixer": "^9.6.0",
"browserify": "^16.2.3",
"envify": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"minimist": "^1.2.5",
"node-sass": "^4.13.1",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"typescript": "^3.5.2",
"watchify": "^3.11.0"
}
}