-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.71 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
{
"name": "slack-chat-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "REACT_APP_ENV=development react-scripts start",
"build": "sh -ac './src/environment/ .env.${REACT_APP_ENV}; react-scripts build'",
"build:development": "REACT_APP_ENV=development npm run build",
"build:next": "REACT_APP_ENV=next npm run build",
"build:production": "REACT_APP_ENV=production npm run build",
"serve": "serve -s build",
"lint:scss": "stylelint '**/*.scss'; exit 0",
"lint:es": "eslint --ext .jsx --ext .js src/",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@imransilvake/scss-framework": "2.1.0",
"@material-ui/core": "4.0.0",
"@material-ui/icons": "4.2.1",
"classnames": "2.2.6",
"firebase": "6.3.4",
"i18next": "17.0.8",
"i18next-browser-languagedetector": "3.0.2",
"lodash": "4.17.19",
"md5": "2.2.1",
"moment": "2.24.0",
"prop-types": "latest",
"react": "16.8.6",
"react-color": "2.17.3",
"react-dom": "16.8.6",
"react-i18next": "10.11.5",
"react-redux": "7.1.0",
"react-router-dom": "5.0.1",
"react-scripts": "3.0.1",
"react-scroll": "1.7.12",
"redux": "4.0.4",
"redux-devtools-extension": "2.13.8"
},
"devDependencies": {
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-react": "7.14.3",
"node-sass": "4.12.0",
"stylelint": "10.1.0",
"stylelint-order": "3.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}