-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 937 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
{
"name": "@interactiveplus/pdk2021-databasebackend",
"version": "0.0.1",
"description": "MySQL + JWT Implementions of PDK2021 Abstract Backend Storage Interfaces. ",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"author": "Yunhao Cao & Siqi Wu",
"license": "MIT",
"devDependencies": {
"@types/simple-sha1": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@interactiveplus/pdk2021-backendcore": "file:../PDK2021-BackendCore",
"@interactiveplus/pdk2021-common": "file:../pdk2021-common",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.3.3",
"@types/yallist": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"simple-sha1": "^3.1.0"
}
}