-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "react-counter-app",
"version": "1.27.0",
"description": "React counter app",
"engines": {
"node": ">=20.14.0 <21.0.0"
},
"keywords": [],
"homepage": ".",
"license": "MIT",
"author": {
"name": "James Humphreys",
"url": "https://github.com/jnahumphreys"
},
"repository": {
"type": "git",
"url": "https://github.com/jnahumphreys/react-tasks-app.git"
},
"bugs": {
"url": "https://github.com/jnahumphreys/react-counter-app/issues"
},
"private": true,
"source": "src/index.html",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@types/node": "^18.7.15",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@testing-library/cypress": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cypress": "^12.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"gh-pages": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel": "^2.12.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"serve": "^14.2.3",
"typescript": "^4.9.3"
},
"scripts": {
"prepare": "husky install",
"start": "parcel --dist-dir build --port 3000",
"build": "parcel build --dist-dir build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint -c .eslintrc.cjs src/**/*",
"check-formatting": "prettier --check 'src/**/*.{ts,tsx}'",
"fix-formatting": "npm run check-formatting -- --write",
"test": "cypress open",
"test:headless": "cypress run"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint",
"*": [
"prettier --ignore-unknown --write"
]
}
}