-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "wakeskate-server",
"version": "1.0.0",
"description": "Server and REST API for the Wakeskate app.",
"main": "index.js",
"repository": "https://github.com/LanceStasinski/wakeskate-server.git",
"author": "LanceStasinski <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start-dev": "nodemon --config nodemon.json src/app.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/app.ts",
"start": "node dist/src/app.js",
"build": "yarn clean && tsc --project ./ && yarn copyFiles",
"clean": "rimraf dist/",
"copyFiles": "ncp src/public dist/src/public & exit 0",
"test": "mocha -r ts-node/register src/test/**/*.test.ts --timeout 10000"
},
"devDependencies": {
"@types/node": "^17.0.23",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"ncp": "^2.0.0",
"rimraf": "^3.0.2"
}
}