-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
68
69
70
71
72
73
74
{
"name": "argon-dashboard-nodejs",
"version": "1.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"knex": "knex --knexfile ./db/knexfile.js --debug"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.420.0",
"@aws-sdk/s3-request-presigner": "3.67.0",
"@hapi/joi": "^14.4.0",
"async-middleware": "^1.2.1",
"aws-sdk": "^2.1536.0",
"bcrypt": "^5.1.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"connect-redis": "^3.4.2",
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"del": "^7.1.0",
"dotenv": "^16.3.1",
"ejs": "~3.1.9",
"express": "~4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.3",
"http-errors": "~2.0.0",
"joi": "^14.3.1",
"knex": "^2.5.1",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.7.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pino": "^8.17.2",
"pino-pretty": "^8.1.0",
"pm2": "^5.3.0",
"postcss-flexbugs-fixes": "^5.0.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.1",
"pretty-quick": "^3.1.3",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier --config .prettierrc --write",
"git add"
],
"packages/**/*.{js,jsx}": [
"eslint --fix",
"prettier --config .prettierrc --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}