-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.json
executable file
·37 lines (37 loc) · 1006 Bytes
/
template.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
{
"package": {
"dependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.1.0",
"@reach/router": "^1.2.1",
"axios": "^0.19.2",
"node-sass": "^4.13.1",
"eos-icons": "^3.1.0",
"i18next": "^19.3.4",
"react-i18next": "^11.3.4"
},
"devDependencies": {
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"sass-lint": "^1.12.1"
},
"scripts": {
"test:sass": "sass-lint -v -q",
"format": "prettier --write .",
"js:fix": "eslint src/ --fix",
"test:js": "eslint src/"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:sass && npm run test:js"
}
}
}
}