-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 982 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
{
"name": "fate-stay-night-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:init": "jest --init",
"start": "npx tsc && npm run copy-data && node dist/src/server.js",
"dev": "concurrently \"npm run copy-data\" \"npx tsc --watch\" \"nodemon -q dist/src/server.js\"",
"copy-data": "copyfiles -u -E \"./data/*\" ./dist",
"clean": "rimraf ./dist/data"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/http-server": "^0.12.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"rimraf": "^4.0.5",
"supertest": "^6.3.3",
"typescript": "^4.9.4"
}
}