-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
49
50
51
52
53
{
"name": "vtec-tabelle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"devStart": "npm run dev:css && ts-node server.ts",
"start": "npm run build && node dist/server.js",
"dev:css": "sass --no-source-map src/styles:public/css",
"build:css": "sass --no-source-map src/styles:dist/public/css",
"build:ts": "tsc -p tsconfig.json",
"build:files": "copyjs.cmd",
"build": "rmdir /s dist && npm run build:css && npm run build:ts && npm run build:files"
},
"author": "Malte Teichert",
"license": "ISC",
"dependencies": {
"@ibm-cloud/cloudant": "^0.0.23",
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.4",
"@types/method-override": "^0.0.32",
"@types/node": "^17.0.19",
"@types/passport": "^1.0.7",
"@types/serve-favicon": "^2.5.3",
"bcrypt": "^5.0.1",
"country-list": "^2.2.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-flash": "0.0.2",
"express-session": "^1.16.2",
"helmet": "^4.6.0",
"method-override": "^3.0.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sass": "^1.49.7",
"serve-favicon": "^2.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/country-list": "^2.1.0",
"@types/express-ejs-layouts": "^2.5.0",
"@types/uuid": "^8.3.4",
"copyfiles": "^2.4.1",
"dotenv": "^8.0.0",
"nodemon": "^2.0.15"
}
}