-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 853 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 853 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
33
34
35
{
"name": "my-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "tsc && node ./build/index.js",
"dev": "tsnd --transpile-only --ignore-watch node_modules ./src/index.ts",
"build": "tsc"
},
"author": "Labenu",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^28.1.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"mysql": "^2.18.1",
"ts-jest": "^28.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^28.1.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/mysql": "^2.15.18",
"@types/uuid": "^8.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.2.3"
}
}