-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "findex-challenge",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "1.1.4",
"react-strap": "0.0.1"
},
"scripts": {
"build:css": "node-sass-chokidar --include-path node_modules/bootstrap/scss/ src/ -o src/",
"watch:css": "node-sass-chokidar --include-path node_modules/bootstrap/scss/ src/ -o src/ --watch --recursive",
"check-lint": "eslint --ext=js --ext=jsx .",
"start": "npm-run-all -p check-lint build:css watch:css start:react",
"start:react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3"
}
}