-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 KB
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
{
"name": "nodejs",
"version": "0.0.0",
"private": true,
"main": "app.js",
"jest": {
"verbose": true
},
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test" : "jest ",
"csslint": "npx stylelint **/*.scss",
"jspuglint": "npx eslint **/*.ts"
},
"dependencies": {
"@types/jquery": "^3.5.5",
"@types/node": "^14.6.3",
"async": "^3.2.0",
"aws-sdk": "^2.745.0",
"axios": "^0.19.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"debug": "~4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.0",
"http-errors": "~1.8.0",
"jquery": "^3.5.1",
"mongoose": "^5.10.2",
"morgan": "~1.10.0",
"pug": "3.0.0",
"pug-cli": "^1.0.0-alpha6",
"stylelint-scss": "^3.18.0",
"tslib": "^2.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-pug": "^1.2.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"nodemon": "^2.0.4",
"sass-loader": "^10.1.0",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.2"
}
}