-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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": "@codeday/pack",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Tyler Menezes <[email protected]>",
"license": "Artistic-2.0",
"scripts": {
"start": "node dist",
"clean": "rm -rf dist",
"build": "npm -s run clean && npx tsc",
"dev": "ts-node-dev --no-notify --respawn --transpile-only src",
"debug": "ts-node-dev --no-notify --respawn src"
},
"dependencies": {
"@codeday/eslint-config-typescript": "^2.1.7",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/luxon": "^1.26.2",
"@types/passport": "^1.0.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"luxon": "^1.26.0",
"nocache": "^2.1.0",
"node-fetch": "^2.6.0",
"passport": "^0.4.1",
"passport-auth0": "^1.4.0"
},
"devDependencies": {
"@codeday/eslint-typescript-config": "^2.0.1",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"eslint": "^7.6.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
}
}