-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "begin-app",
"description": "Begin Create React App + API",
"version": "0.0.0",
"proxy": "http://localhost:3333",
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "3.4.4"
},
"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.1.3",
"@begin/data": "^1.2.3",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tiny-json-http": "^7.3.0"
}
}