-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 979 Bytes
/
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
{
"name": "arc-data-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register src/index.ts",
"starts": "ts-node --inspect=5858 src/index.ts",
"dev": "node node_modules/nodemon/bin/nodemon.js",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|/.(test|spec))/.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^23.3.12",
"express": "^4.16.4",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"path": "^0.12.7",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"ts-progress": "^0.1.7",
"typescript": "^3.3.4000"
},
"devDependencies": {
"@types/node": "^11.11.6"
}
}