-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vite-boilerplate",
"version": "0.0.2",
"description": "This is a template repo for React projects with the help of Vite with extended configuration.",
"private": false,
"homepage": ".",
"author": {
"email": "johndarrylpelingo@gmail.com",
"name": "John Darryl Pelingo",
"url": "https://johndpelingo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/john-d-pelingo/vite-boilerplate.git"
},
"bugs": {
"url": "https://github.com/john-d-pelingo/vite-boilerplate/issues"
},
"keywords": [
"vite",
"react",
"template",
"typescript"
],
"engines": {
"node": ">=14"
},
"prettier": "@jdp-dev/prettier-config",
"standard-version": {
"scripts": {
"prerelease": "yarn test"
}
},
"scripts": {
"--DEVELOPMENT--": "echo \"--DEVELOPMENT--\" && exit 1",
"dev": "vite",
"format": "prettier --write 'src/**/*.{css,js,ts,tsx}' '**/*.md'",
"lint": "eslint ./src/ --ext .js,.ts,.tsx --max-warnings 0 --report-unused-disable-directives",
"postinstall": "husky install",
"sweep": "rimraf dist coverage",
"test": "jest --env=jsdom --no-cache",
"test:ci": "jest --env=jsdom --no-cache --coverage",
"test:t": "tsc -p ./tsconfig.json --noEmit",
"test:w": "jest --env=jsdom --no-cache --verbose=false --watch",
"--BUILD--": "echo \"--BUILD--\" && exit 1",
"build": "vite build",
"build:ci": "vite build",
"prebuild": "run-s sweep lint test:t test",
"prebuild:ci": "run-s sweep lint test:t test:ci",
"--PRODUCTION--": "echo \"--PRODUCTION--\" && exit 1",
"release": "standard-version",
"serve": "vite preview"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@jdp-dev/commitlint-config": "^1.2.0",
"@jdp-dev/eslint-config-typescript-react": "^1.2.0",
"@jdp-dev/prettier-config": "^1.2.0",
"@jdp-dev/tsconfig": "^1.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-react": "^1.1.4",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"vite": "^2.7.12"
}
}