-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "server",
"version": "0.0.0",
"scripts": {
"postinstall": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"debug": "nodemon --legacy-watch --watch ./dist --inspect=0.0.0.0:5858 --nolazy ./dist/index.js",
"docker-debug": "docker-compose up",
"start": "node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "jest --coverage --verbose"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^6.14.6",
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"ts-jest": "^24.0.2",
"typescript": "^2.3.2"
},
"main": "./dist/index.js",
"dependencies": {
"@awaitjs/express": "^0.3.0",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/mysql": "^2.15.6",
"@types/sharp": "^0.22.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.0",
"mysql": "^2.17.1",
"pug": "^2.0.3",
"sharp": "^0.22.1"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}