-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "forkify",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.5",
"autoprefixer": "^9.6.1",
"debounce": "^1.2.0",
"encoding": "^0.1.13",
"http-proxy-middleware": "^0.20.0",
"netlify-lambda": "^1.6.3",
"postcss-cli": "^6.1.3",
"react": "^16.9.0",
"react-bottom-scroll-listener": "^3.0.0",
"react-dom": "^16.9.0",
"react-ga": "^2.7.0",
"react-scripts": "3.1.2"
},
"scripts": {
"build:css": "tailwind build src/styles/index.css -o src/styles/tailwind.css",
"watch:css": "tailwind build src/styles/index.css -o src/styles/tailwind.css -w",
"netlify:serve": "netlify-lambda serve .netlify/functions",
"start": "npm run watch:css & dotenv run npm run netlify:serve & react-scripts start",
"build": "npm run build:css && react-scripts build && netlify-lambda build .netlify/functions",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@fortawesome/fontawesome-free": "^5.11.2",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addon-viewport": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"dotenv": "^8.1.0",
"eslint-plugin-prettier": "^3.1.1",
"flow": "^0.2.3",
"flow-bin": "^0.109.0",
"netlify-cli": "^3.25.2",
"prettier": "^1.18.2",
"react-devtools": "^4.2.0",
"tailwindcss": "^1.1.2",
"typescript": "^4.5.5"
}
}