-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.32 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
43
44
45
46
47
48
49
{
"name": "lead-wallet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tailwindcss/ui": "^0.1.2",
"classnames": "^2.2.6",
"npm-run-all": "^4.1.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-elastic-carousel": "^0.7.5",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"rimraf": "^3.0.2",
"styled-components": "^5.2.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"autoprefixer": "^9.7.4",
"cross-env": "^7.0.2",
"postcss-cli": "^7.1.0",
"prettier": "^2.0.4"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"start": "run-s build:clean build:style react:start",
"react:start": "react-scripts --max_old_space_size=4096 start",
"react:build": "react-scripts --max_old_space_size=4096 build",
"build:style": "tailwind build src/styles/index.css -o src/styles/tailwind.css",
"build:clean": "rimraf ./build",
"build": "run-s build:clean build:style react:build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}