-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "react-template",
"version": "1.0.0",
"description": "React template build from scratch",
"main": "./src/index.tsx",
"scripts": {
"start": "webpack serve --mode=development",
"test:unit": "jest",
"test:e2e": "cypress open",
"test:e2e:ci": "cypress run",
"lint": "eslint --color ./src",
"lint:fix": "eslint --fix ./src",
"format:check": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"coverage:push": "codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vassalloandrea/react-template.git"
},
"keywords": [
"react",
"frontend",
"tailwindcss",
"typescript"
],
"author": "Andrea Vassallo",
"license": "ISC",
"bugs": {
"url": "https://github.com/vassalloandrea/react-template/issues"
},
"homepage": "https://github.com/vassalloandrea/react-template#readme",
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"codecov": "^3.8.1",
"cypress": "^6.5.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5",
"web-vitals": "^1.1.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}