-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "frontend-template",
"author": "Wunder.io",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=16.14"
},
"scripts": {
"prepare": "husky install",
"build": "echo 'No build command specified in package.json'",
"start": "node index",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "./node_modules/.bin/eslint ./",
"lint:style": "./node_modules/.bin/stylelint ./**/*.{js,ts,css,scss,less}",
"test": "jest --forceExit"
},
"dependencies": {
"express": "^4.17.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"postcss-scss": "^4.0.3",
"prettier": "^2.6.2",
"stylelint": "^14.6.1",
"stylelint-config-recommended": "^7.0.0",
"supertest": "^6.2.2"
},
"standard": {
"parser": "@babel/eslint-parser"
}
}