-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.96 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
{
"name": "boilerplate",
"description": "This project is my goto boilerplate.",
"version": "1.1.0",
"main": "src/index.tsx",
"author": "",
"license": "ISC",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"release": "standard-version --no-verify",
"test": "jest",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "eslint *.{js,jsx,ts,tsx}",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@snowpack/app-scripts-react": "^2.0.1",
"@snowpack/plugin-dotenv": "^2.1.0",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.2",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/snowpack-env": "^2.3.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"cypress": "^7.3.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"snowpack": "^3.3.7",
"standard-version": "^9.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write",
"jest --passWithNoTests --changedSince=master"
]
}
}