-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.81 KB
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": "react-js-intro",
"version": "1.0.0",
"description": "Assembler School: React.js Intro",
"keywords": [
"react.js",
"intro",
"assembler school"
],
"author": "Dani Lucaci <dani@assemblerschool.com>",
"license": "MIT",
"private": true,
"main": "src/index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:watch": "react-scripts test --watchAll",
"test:ci:all": "cross-env CI=true react-scripts test --all --env=jsdom",
"test:related": "cross-env CI=true react-scripts test --bail --findRelatedTests --env=jsdom",
"lint:js": "eslint . --ext .js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:format": "prettier --write .",
"lint:format:check": "prettier --check .",
"prepare": "husky install",
"pre:push": "npm run lint:js && npm run lint:format:check && npm run test:ci:all"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "https://github.com/assembler-school/react-js-intro.git"
},
"dependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.5",
"bootstrap": "^4.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"sass": "^1.32.11",
"prop-types": "^15.7.2",
"web-vitals": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@html-eslint/eslint-plugin": "^0.8.0",
"@html-eslint/parser": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-babel": "^0.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^5.1.3",
"jest": "^26.6.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}