-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "advanced-react-workshop",
"version": "0.1.0",
"description": "An in-depth look at some of the more advanced React development patterns, with an eye towards high extensibility and performance considerations.",
"main": "src/index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Velveeta/advanced-react-workshop.git"
},
"author": "Richard Lindsey",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Velveeta/advanced-react-workshop/issues"
},
"homepage": "https://github.com/Velveeta/advanced-react-workshop#readme",
"dependencies": {
"bootstrap": "^4.3.1",
"cypress": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"react": "0.0.0-experimental-b53ea6ca0",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "0.0.0-experimental-b53ea6ca0",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1",
"react-syntax-highlighter": "^11.0.1",
"redux": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"test:e2e": "cypress run",
"test:e2e:dev": "cypress open"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}