-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 990 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
{
"name": "api.prestonneal.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon src/main.ts",
"build": "tsc --project tsconfig.build.json",
"docker:build": "docker build --tag nealwp/api.prestonneal.com:latest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nealwp/api.prestonneal.com.git"
},
"author": "nealwp",
"license": "ISC",
"bugs": {
"url": "https://github.com/nealwp/api.prestonneal.com/issues"
},
"homepage": "https://github.com/nealwp/api.prestonneal.com#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}