-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.81 KB
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
54
55
56
{
"name": "thumb-friends-app",
"version": "1.0.0",
"main": "index.js",
"author": "alexbaeza",
"license": "MIT",
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf yarn.lock && yarn install && yarn start",
"compile-sass": "node-sass src/assets/scss/style.scss src/assets/css/style.css",
"minify-sass": "node-sass src/assets/scss/argon-design-system-react.scss src/assets/css/argon-design-system-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/style.scss src/assets/css/style.css --source-map true",
"start:lambda": "netlify-lambda serve functions",
"build:lambda": "netlify-lambda build functions",
"lint": "eslint .",
"lint:fix": "eslint \"src/**/*.+(js|jsx)\" --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"bootstrap": "4.3.1",
"netlify-lambda": "^2.0.1",
"node-sass": "4.13.1",
"purgecss-webpack-plugin": "^2.3.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-loading-skeleton": "^2.1.1",
"react-router-dom": "5.1.2",
"react-scripts": "^3.4.1",
"react-syntax-highlighter": "^13.5.3",
"reactstrap": "8.4.1",
"save-svg-as-png": "^1.4.17",
"yarn": "^1.22.5"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2"
}
}