-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
57
58
59
60
61
{
"name": "code-snippet-server",
"version": "0.0.1",
"description": "Server for the code snippets project",
"main": "index.js",
"scripts": {
"postinstall": "npx tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"start": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"start old": "npx pm2 start pm2.yaml",
"test": "jest",
"install_and_run": "npm install; npm run start"
},
"keywords": [],
"author": "Yohay Nahmany",
"license": "MIT",
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/node": "^10.12.12",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"@types/uuid": "^3.4.6",
"app-module-path": "^2.2.0",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^5.0.0-alpha.7",
"pm2": "^3.2.9",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"supertest": "^3.4.1",
"swagger-ui-express": "^4.0.2",
"tsc-watch": "^1.0.31",
"typescript": "^3.2.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5"
}
}