-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.67 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
61
62
{
"name": "hetio-frontend-components",
"version": "0.0.2",
"description": "Frontend components shared across https://het.io",
"main": "build/index.js",
"module": "build/index.js",
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/hetio/frontend-components.git"
},
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"color": "^3.1.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.2.0"
},
"scripts": {
"start": "cp ./src/index.development.js ./src/index.js && react-scripts start",
"build": "cp ./src/index.production.js ./src/index.js && rm -rf build && mkdir build && npx babel src --out-dir build --copy-files",
"test": "react-scripts build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"eslint-config-google": "^0.14.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-react": "^7.16.0"
}
}