This repository was archived by the owner on Jul 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.39 KB
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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"add": "^2.0.6",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"emotion": "^9.2.4",
"emotion-theming": "^9.2.4",
"font-awesome": "^4.7.0",
"js-yaml": "3.13.1",
"lodash": "^4.17.21",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-emotion": "^9.2.4",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"seamless-immutable": "^7.1.3",
"yarn": "^1.22.0"
},
"scripts": {
"lint": "eslint --fix --ext .jsx,.js src",
"start": "react-scripts start",
"start:welcome": "REACT_APP_WINDOW=welcome react-scripts start",
"build": "yarn build:welcome && yarn build:main",
"build:welcome": "REACT_APP_WINDOW=welcome react-scripts build && mv build welcome",
"build:main": "react-scripts build && mv build main",
"test": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"webpack-dev-server": "3.1.11"
}
}