-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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
50
51
52
53
{
"name": "google-airlines",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "24.0.13",
"@types/node": "12.0.4",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-tooltip": "3.9.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-graceful-image": "1.2.9",
"react-scripts": "3.0.1",
"react-tooltip": "3.10.0",
"typescript": "3.5.1"
},
"scripts": {
"start": "npm-run-all -p start:css start:js",
"build": "npm-run-all build:css build:js",
"prestart": "yarn data",
"prebuild": "yarn data",
"start:js": "react-scripts start",
"build:js": "react-scripts build",
"start:css": "postcss src/index.tailwind.css -o src/index.css -w",
"build:css": "postcss src/index.tailwind.css -o src/index.css --env production",
"data": "node data.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@fullhuman/postcss-purgecss": "1.2.0",
"@testing-library/react": "8.0.1",
"jest-fetch-mock": "2.1.2",
"npm-run-all": "4.1.5",
"postcss-cli": "6.1.2",
"puppeteer": "1.17.0",
"purgecss": "1.3.0",
"tailwindcss": "1.0.3"
},
"resolutions": {
"lodash": "^4.17.13"
}
}