-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "qualitylife",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build-css": "npx sass --no-source-map web/scss/index.scss web/assets/bundle.css",
"build-tsc": "npx tsc",
"build-pack": "npx webpack --config webpack.config.js",
"build": "npm run build-css && npm run build-tsc && npm run build-pack",
"build-dev": "npm run build-css && npm run build-pack",
"start": "node dist/index.js",
"dev": "npm run build-dev && node dist/index.js",
"watch": "npx nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GTDEHacklah23/qualitylife.git"
},
"author": "piman51277",
"license": "MIT",
"bugs": {
"url": "https://github.com/GTDEHacklah23/qualitylife/issues"
},
"homepage": "https://github.com/GTDEHacklah23/qualitylife#readme",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.2.5",
"@types/nunjucks": "^3.2.2",
"@types/pbkdf2": "^3.1.0",
"@types/uuid": "^9.0.1",
"@types/zipcodes": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"nodemon": "^2.0.22",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"connect-mongo": "^5.0.0",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.9.2",
"mongoose": "^7.2.2",
"nunjucks": "^3.2.4",
"pbkdf2": "^3.1.2",
"sass": "^1.62.1",
"uuid": "^9.0.0",
"zipcodes": "^8.0.0"
},
"nodemonConfig": {
"watch": [
"web"
],
"ext": "ts,njk,scss",
"exec": "npm run dev",
"delay": 3000
}
}