-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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
{
"name": "azure-express-zip-creator",
"description": "A simple azure app service app to create zips from image files.",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Microsoft",
"main": "dist/app.js",
"types": "types/app.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"archiver": "^4.0.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"lodash": "^4.17.15",
"lusca": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/archiver": "^3.1.0",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/concurrently": "^4.1.0",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.141",
"@types/lusca": "^1.6.1",
"@types/multer": "^1.4.7",
"@types/node": "^12.7.8",
"@types/supertest": "^2.0.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-jest": "^25.4.0",
"concurrently": "^5.0.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"multer": "^1.4.3",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}