-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 947 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
{
"name": "capstone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.test.ts",
"build": "tsc && npm run copy-public",
"start": "node dist/server.js",
"copy-public": "cp -R ./src/public ./dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai-http": "^4.2.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@types/swagger-jsdoc": "^6.0.1",
"chai": "^4.3.8",
"copyfiles": "^2.4.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
}
}