forked from phiilu/mailman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "mailman",
"version": "1.0.2",
"description": "A simple mail manager",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "backpack",
"build": "backpack build && cd client && npm run build && cd -",
"start": "NODE_ENV=production pm2 start ecosystem.config.js",
"precommit": "lint-staged"
},
"author": "Florian Kapfenberger <[email protected]>",
"license": "MIT",
"dependencies": {
"backpack-core": "^0.7.0",
"body-parser": "^1.18.2",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"express-rate-limit": "^2.11.0",
"helmet": "^3.9.0",
"joi": "^13.0.2",
"jsonwebtoken": "^8.1.0",
"knex": "^0.14.2",
"lodash": "^4.17.4",
"mariasql": "^0.2.6",
"morgan": "^1.9.0",
"sha512crypt-node": "^0.1.0"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-react": "^6.24.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.9.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
}
}