-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
41
42
43
{
"name": "passkeys-tutorial",
"version": "0.0.1",
"description": "passkeys-tutorial initialised with create-express-typescript-application.",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node ./build/src/index.js",
"dev": "ts-node ./src/index.ts",
"dev:nodemon": "nodemon -w src -e ts,json -x ts-node ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript"
],
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.22",
"ts-node": "^10.8.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@simplewebauthn/server": "^8.3.5",
"@types/express-session": "^1.17.10",
"@types/uuid": "^9.0.7",
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"mysql2": "^3.6.5",
"uuid": "^9.0.1"
}
}