-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dominikhaid-next",
"version": "0.1.0",
"private": true,
"dependencies": {
"@storybook/addon-console": "^1.2.3",
"agent-base": "^6.0.2",
"autoprefixer": "^9",
"babel-plugin-inline-react-svg": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.1",
"moment": "^2.27.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"next": "^10.0.3",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"postcss-preset-env": "^6.7.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-hot-loader": "^4.13.0",
"react-uuid": "^1.0.2",
"storycap": "^3.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "7.12.5",
"@sambego/storybook-styles": "^1.0.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-controls": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/addon-storysource": "^6.1.18",
"@storybook/react": "^6.1.18",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@zeit/next-less": "^0.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-recommended": "^4.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-watch": "^7.0.0",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.7.2",
"react-storybook-addon-props-combinations": "^1.1.0",
"storybook-addon-designs": "^5.4.3",
"storybook-addon-next-router": "^2.0.4"
},
"scripts": {
"start": "NODE_ENV=production node ./server.js",
"dev": "NODE_OPTIONS='--inspect-brk' NODE_ENV=development node ./server.js",
"debug": "node --inspect ./node_modules/next/dist/bin/next",
"build": "next build && next export",
"plugin": "NODE_ENV=production node ./src/bin/plugin.js",
"format": "prettier --config .prettierrc.json \"{,!(node_modules)/**/}src/**/*.{js,jsx}\" --write",
"storybook:start": "start-storybook -c .storybook -s ./public -p 6006",
"storybook:screenshot": "npx storycap http://localhost:6006",
"storybook:build": "build-storybook && cp -R ./publ ic/fonts ./storybook-static",
"build-tailwind": "postcss public/css/global.css -o public/css/tailwind-build.css"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"globals": {
"window": true,
"browser": true
}
}
}