forked from eezcommerce/eezcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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": "eezcommerce",
"version": "1.0.0",
"description": "See [CONTRIBUTING.md](CONTRIBUTING.md) for workflow and rules",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"postinstall": "sass public/css/theme.scss public/css/theme.css",
"fix": "node_modules/.bin/prettier --write \"./**/*.{html,css,scss,js}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucacataldo/eezcommerce.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucacataldo/eezcommerce/issues"
},
"homepage": "https://github.com/lucacataldo/eezcommerce#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"client-sessions": "^0.8.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"handlebars": "^4.7.6",
"handlebars-helpers": "^0.10.0",
"jimp": "^0.9.6",
"mongoose": "^5.9.5",
"multer": "^1.4.2",
"nodemailer": "^6.4.5",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"sass": "^1.26.3",
"stripe": "^8.38.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": true,
"printWidth": 120
},
"pre-commit": [
"fix"
]
}