-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@doenet/cloud-id",
"version": "1.0.0",
"description": "doenet.cloud identity services",
"main": "src/index.js",
"bin": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"npx tsc --watch\" \"npx nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jim Fowler <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"address-rfc2822": "^2.1.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"handy-redis": "^2.2.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.6.2",
"pug": "^3.0.2",
"redis": "^3.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5",
"uuidv4": "^6.2.11",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.4",
"@types/nodemailer": "^6.4.4",
"concurrently": "^6.2.0"
}
}