-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 997 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 997 Bytes
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
{
"name": "visualbox-build-server",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "yarn build-ts && yarn tslint",
"serve": "node dist/server.js",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/visualbox/visualbox-build-server.git",
"author": "Pwntus <pontus.edvard@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"rimraf": "^2.6.3",
"unzipper": "^0.10.1",
"websocket": "^1.0.28"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/node": "^12.0.10",
"@types/rimraf": "^2.0.2",
"@types/unzipper": "^0.9.2",
"@types/valid-url": "^1.0.2",
"@types/websocket": "^0.0.40",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}