-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "react",
"version": "1.0.0",
"description": "React example starter project",
"keywords": [
"react",
"starter"
],
"main": "src/index.js",
"dependencies": {
"@xstate/react": "1.2.2",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-scripts": "3.4.3",
"swapi-typescript": "0.0.2",
"xstate": "4.15.3"
},
"devDependencies": {
"@smartive/testcafe-utils": "1.3.1",
"@smartive/xstate-test-toolbox": "2.0.1",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@xstate/test": "0.4.1",
"http-server": "0.12.3",
"start-server-and-test": "1.11.7",
"testcafe": "1.10.1",
"typescript": "3.8.3"
},
"scripts": {
"start": "react-scripts start",
"serve": "http-server ./build",
"build": "NODE_ENV=production react-scripts build",
"pretest": "npm run build",
"test": "start-server-and-test 'npm run serve -- -c-1 -s' 8080 test:e2e",
"test:e2e": "testcafe chrome"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}