-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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": "begin-app",
"description": "Begin Create React App + API",
"version": "0.0.0",
"proxy": "http://localhost:3333",
"arc": {
"app": "react-hello",
"http": [
{
"/api": {
"method": "get",
"src": "/api"
}
}
],
"static": {
"folder": "build",
"spa": true
}
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.3"
},
"scripts": {
"start": "run-p start:react api",
"start:react": "react-scripts start",
"build": "react-scripts build",
"test:i": "react-scripts test",
"eject": "react-scripts eject",
"api": "cross-env NODE_ENV=testing ARC_LOCAL=1 npx sandbox",
"test": "cross-env NODE_ENV=testing PORT=6666 tape test/**/*-test.js test/*-test.js | tap-spec",
"serve": "run-s build api"
},
"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"
]
},
"devDependencies": {
"@architect/sandbox": "^3.3.6",
"@begin/data": "^1.2.3",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"tap-spec": "^5.0.0",
"tape": "^5.2.0",
"tiny-json-http": "^7.3.0"
}
}