-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 978 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 978 Bytes
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
{
"name": "api-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test:prod": "cross-env TEST-ENV=PROD jest",
"test:dev": "cross-env TEST-ENV=DEV jest",
"test:local": "cross-env TEST-ENV=LOCAL jest",
"local:server": "ts-node src/local-cache",
"format": "prettier --write .",
"start": "ts-node src"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"overrides": [
{
"files": [
"*.json"
],
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
}