-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "project",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^16",
"yarn": "please-use-npm"
},
"scripts": {
"dev": "vite",
"build": "vite build --base=./",
"start": "vite preview",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"test:cov": "jest --coverage --env=jsdom",
"test:ci": "jest --ci --silent --coverage --env=jsdom",
"prepare": "husky install",
"pre-commit": "lint-staged",
"format": "prettier --write \"src/**/*.{js,scss,css,md,json}\""
},
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"@testing-library/dom": "8.11.1",
"@testing-library/user-event": "13.5.0",
"babel-jest": "27.4.5",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.4.5",
"jest-config": "27.4.5",
"lint-staged": "12.1.4",
"prettier": "2.4.1",
"sass": "1.45.1",
"vite": "2.5.10"
},
"lint-staged": {
"src/**/*.{js,json,css,scss,md}": [
"prettier --write"
]
}
}