-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
112 lines (112 loc) · 3.26 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
104
105
106
107
108
109
110
111
112
{
"name": "eat",
"version": "1.0.0",
"description": "Killer Storybook Config",
"scripts": {
"server": "node ./graphql/index.js",
"start": "HTTPS=true webpack-dev-server --mode development --open --hot",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9001 -c .storybook",
"precommit": "lint-staged",
"eslint:global": "eslint src -c src/.eslintrc.js --ext .js,.jsx,.tsx,.ts",
"eslint:global:fix": "eslint --fix src -c src/.eslintrc.js --ext .js,.jsx,.tsx,.ts"
},
"lint-staged": {
"src/**/*.{js,jsx,tsx,json,css}": [
"prettier --write",
"git add"
]
},
"keywords": [
"Storybook",
"Webpack",
"React",
"Typescript"
],
"author": "Harry Ghazni",
"license": "ISC",
"dependencies": {
"@babel/cli": "7.2.3",
"@types/jest": "24.0.0",
"@types/node": "10.12.24",
"@types/react": "16.8.14",
"@types/react-dom": "16.8.0",
"@types/react-router-dom": "4.3.1",
"babel-plugin-graphql-tag": "^2.4.0",
"babel-plugin-import-graphql": "^2.7.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"body-parser": "1.18.3",
"concurrently": "4.1.0",
"express-graphql": "0.7.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"graphql-tools": "4.0.4",
"open": "6.2.0",
"open-cli": "1.0.5",
"postcss-sass-loader": "1.1.0",
"postcss-scss": "2.0.0",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-modal": "3.8.1",
"react-router": "4.3.1",
"react-scripts": "2.1.1",
"react-transition-group": "4.0.1",
"resolve-url-loader": "3.1.0",
"st": "1.2.2",
"webpack-babel-env-deps": "1.5.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/node": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.04",
"@csstools/postcss-sass": "4.0.0",
"@storybook/addon-knobs": "5.3.21",
"@storybook/react": "5.3.21",
"@types/storybook__addon-knobs": "5.2.1",
"@types/storybook__react": "5.2.1",
"@types/webpack-env": "1.15.2",
"@typescript-eslint/eslint-plugin": "1.11.0",
"@typescript-eslint/parser": "1.11.0",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.4",
"connect": "3.6.6",
"css-loader": "2.1.0",
"eslint": "6.0.1",
"express": "4.16.4",
"file-loader": "3.0.1",
"fs": "0.0.1-security",
"html-webpack-plugin": "3.2.0",
"https": "1.0.0",
"lint-staged": "8.2.1",
"mini-css-extract-plugin": "0.7.0",
"node-sass": "^4.11.0",
"postcss-loader": "3.0.0",
"react-router-dom": "4.3.1",
"regenerator-runtime": "^0.13.7",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"typescript": "4.0.2",
"webpack": "4.19.1",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.3.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"main": "index.tsx",
"repository": "[email protected]:hghazni/killer-storybook-config.git"
}