-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 828 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 828 Bytes
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
{
"name": "fru1tmachine",
"version": "0.1.0",
"private": true,
"dependencies": {
"dotenv": "^8.0.0",
"ensure-animation": "^1.0.0",
"number-to-words": "^1.2.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^1.2.1"
},
"devDependencies": {
"react-scripts": "1.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"deploy": "aws s3 sync build/ s3://example-bucket --acl public-read",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">1%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}