-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 965 Bytes
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
{
"name": "todo",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-scripts": "2.1.8",
"redux": "^4.0.1"
},
"scripts": {
"analyze": "source-map-explorer \"build/static/js/*.js\"",
"build:css": "postcss src/styles/index.css -o src/index.css",
"watch:css": "postcss src/styles/index.css -o src/index.css -w",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start": "concurrently --kill-others \"npm run watch:css\" \"react-scripts start\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"autoprefixer": "^9.5.0",
"concurrently": "^4.1.0",
"postcss-cli": "^6.1.2",
"tailwindcss": "^1.0.0-beta.4"
}
}