-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "notes-app",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^4.0.0-alpha.1",
"classnames": "^2.2.6",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.7.2",
"query-string": "^6.4.0",
"react": "^16.8.4",
"react-app-polyfill": "^0.2.2",
"react-cookie": "^3.0.8",
"react-dom": "^16.8.4",
"react-router-dom": "^4.4.0",
"react-scripts": "2.1.8"
},
"scripts": {
"start": "react-scripts start && npm run watch:sass",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src --ext .jsx --ext .js",
"lint-fix": "eslint --fix src --ext .jsx --ext .js",
"watch:sass": "npm run build:sass && npm run build:sass -- -w",
"build:sass": "node-sass -r --output-style compressed src/stylesheets/main.scss -o src/stylesheets/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"node-sass": "^4.11.0"
}
}