-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
40
41
42
43
{
"name": "wittyqueue",
"version": "1.0.0",
"description": "taskQueue",
"main": "app.js",
"scripts": {
"test": "test",
"build:dev": "tsc",
"start:dev": "webpack --watch && nodemon dist\\bundle.js",
"start:dev1": "nodemon dist\\bundle.js",
"start": "npm-run-all --parallel watch:build watch:server",
"watch:build": "webpack --watch",
"watch:server": "nodemon src/app.ts",
"debug": "tsc && node dist/app.js --inspect=3001"
},
"author": "Haim",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.9.4",
"install": "^0.12.1",
"nodemon": "^1.18.4",
"npm": "^6.4.1",
"npm-run-all": "^4.1.3",
"ts-loader": "^5.0.0",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@types/extract-zip": "^1.6.2",
"@types/form-data": "^2.2.1",
"@types/formidable": "^1.0.31",
"@types/properties-reader": "0.0.1",
"@types/yargs": "^11.1.1",
"extract-zip": "^1.6.7",
"form-data": "^2.3.2",
"formidable": "^1.2.1",
"moment": "^2.22.2",
"properties-reader": "0.0.16",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.2",
"yargs": "^12.0.2"
}
}