-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 838 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 838 Bytes
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
{
"name": "src",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "clear && ts-node-dev ./src/server.ts",
"start": "tsc && node ./build/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/knex": "^0.16.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "^0.95.3",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}