-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "webtech",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build-sass": "sass --no-source-map src/public/scss/main.scss dist/public/css/main.css",
"build-ts": "tsc",
"build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets",
"copy-static-assets": "ts-node scripts/copystaticassets.ts",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"start": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-sass": "sass --no-source-map --watch src/public/scss/main.scss dist/public/css/main.css",
"watch-ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/express": "^4.17.11",
"@types/express-flash": "0.0.2",
"@types/express-session": "^1.17.3",
"@types/node": "^14.14.37",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"@types/shelljs": "^0.8.8",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"nodemon": "^2.0.7",
"sass": "^1.32.8",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}