forked from Unisergius/simple-math-api-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "simple-math-api-exercise",
"version": "1.0.0",
"description": "Node.js + express math api",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [],
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unisergius/simple-math-api-exercise.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Unisergius/simple-math-api-exercise/issues"
},
"homepage": "https://github.com/Unisergius/simple-math-api-exercise#readme",
"dependencies": {
"dotenv": "^16.0.3",
"supertest": "^6.3.4",
"express": "^4.18.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}