-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 961 Bytes
/
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
{
"name": "web-accessibility",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"eslint": "eslint .",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"check": "npm run prettier && npm run eslint",
"check:fix": "npm run prettier:fix && npm run eslint:fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"vite": "^5.1.6"
},
"devDependencies": {
"autoprefixer": "^10.4.18",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"postcss-nesting": "^12.1.0",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.1"
}
}