-
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": "siterpg",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"dev": "tsnd --ignore-watch node_modules ./src/index.ts",
"build": "tsc",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "4.17",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "16.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^29.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"express": "4.17",
"jsonwebtoken": "8.5.1",
"mysql2": "^3.0.1",
"ts-node": "^10.9.1"
}
}