-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
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
38
{
"name": "glue-api",
"version": "1.0.0",
"main": "index.js",
"author": "Moritz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"start:dev": "nodemon ./src/index.ts",
"build": "tsc"
},
"dependencies": {
"@dfinity/agent": "^0.11.3",
"@dfinity/candid": "^0.11.3",
"@dfinity/identity": "^0.11.2",
"@dfinity/nns": "^0.6.0",
"@dfinity/principal": "^0.11.3",
"axios": "^0.27.2",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"crc-32": "^1.2.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"mongodb": "^4.6.0",
"mongoose": "^6.3.5",
"passport": "^0.6.0",
"passport-discord": "^0.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/passport": "^1.0.8",
"@types/passport-discord": "^0.1.5",
"typescript": "^4.7.2"
}
}