-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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
{
"name": "executor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "npm run clean && tsc --watch",
"prettify": "prettier --write src/**/*.ts",
"clean": "rm -rf dist || exit 0",
"test": "jest",
"test:watch": "jest --watch",
"server": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git@gitlab.beuth-hochschule.de:scheduling-threading-javascript/executor.git"
},
"author": "Jannik Portz",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@types/pngjs": "^3.3.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"loadtest": "^3.0.8",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {}
}