-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "contribute-react-page",
"version": "0.1.0",
"private": true,
"dependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loading": "^2.0.3",
"react-scripts": "^3.0.0",
"react-stripe-elements": "^2.0.3"
},
"scripts": {
"start": "npm run sass:build && react-scripts start",
"build": "npm run sass:build && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"sass": "sass --watch src/styles/scss:src/styles/css",
"sass:watch": "node_modules/.bin/node-sass -w src/styles/scss -o src/styles/css",
"sass:build": "node_modules/.bin/node-sass src/styles/scss -o src/styles/css --source-map true",
"lint": "node_modules/.bin/standard src/**/*.js",
"lint:fix": "node_modules/.bin/standard src/**/*.js --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"node-sass": "^4.12.0",
"standard": "^12.0.1"
}
}