-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:9000",
"dependencies": {
"axios": "^0.19.1",
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"netlify-lambda": "^1.6.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropdown": "^1.6.4",
"react-ga": "^2.7.0",
"react-scripts": "3.3.0",
"react-switch": "^5.0.1",
"recharts": "^1.8.5"
},
"scripts": {
"tailwind:css": "tailwind build src/css/tailwind.src.css -c tailwind.js -o src/css/tailwind.css",
"start": "npm run tailwind:css && react-scripts start",
"build": "npm run tailwind:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"functions:serve": "netlify-lambda serve functionsSource",
"functions:build": "netlify-lambda build functionsSource"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-loader": "^8.0.6",
"tailwindcss": "^0.7.4",
"tailwindcss-gradients": "^1.1.0"
}
}