-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
48
49
50
51
52
{
"name": "boilerplate-react",
"version": "0.2.0",
"description": "React!",
"repository": "https://github.com/dev-academy-challenges/react-boilerplate.git",
"main": "server/index.js",
"scripts": {
"dev": "vite",
"test": "vitest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier -w '**/*.{js,jsx,ts,tsx}'"
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/react",
"ignorePatterns": [
"bundle.js"
]
},
"author": "Dev Academy Aotearoa",
"license": "ISC",
"devDependencies": {
"@devacademy/eslint-config": "^1.8.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "2.6.1",
"react": "^18.0.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2",
"typescript": "~4.8.4",
"vite": "^4.2.1",
"vitest": "^0.30.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": "> 2%, not dead"
}