generated from AdoryVo/starter-static-website
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "node-website-template",
"version": "1.0.0",
"main": "index.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/AdoryVo/node-website-template.git"
},
"scripts": {
"sass": "sass src/custom.scss dist/styles/bootstrap.css",
"build:css": "sass src/custom.scss dist/styles/bootstrap.css && postcss dist/styles/styles.css --use autoprefixer -o dist/styles/styles.css",
"build:js": "webpack --mode=production",
"build": "npm run build:css && npm run build:js",
"start": "node index.js"
},
"dependencies": {
"@popperjs/core": "^2.6.0",
"autoprefixer": "^10.2.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.0-beta1",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^2.2.6",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"helmet": "^4.4.1",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"mongoose": "^5.11.14",
"postcss": "^8.2.4",
"serve-favicon": "^2.5.0",
"validator": "^13.5.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"postcss-cli": "^8.3.1",
"sass": "^1.32.6",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}