-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "loan-estimator",
"version": "0.1.0",
"homepage": "https://loan-estimator.dzoni.dev/",
"private": true,
"dependencies": {
"currency-symbol-map": "^4.0.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-inlinesvg": "^0.8.4",
"react-localization": "^1.0.13",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"react-share": "^3.0.0",
"react-transition-group": "^4.1.1"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"build": "npm run build-css && react-scripts build",
"start": "npm-run-all -p watch-css start-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint-config-prettier": "^5.0.0",
"eslint-config-semistandard-react": "^4.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-semistandard-react": "^4.1.1",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}