-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.14 KB
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
{
"name": "advanced-react-patterns",
"version": "1.0.0",
"description":
"This project contains the implementation of advanced react patterns as presented by Kent C. Dodds in his course on https://egghead.io/courses/advanced-react-component-patterns.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "start-storybook -p 9001",
"build": "build-storybook -c .storybook -o build",
"precommit": "pretty-quick --staged"
},
"author": "Fadi ABDELMESSIH",
"license": "SEE LICENSE IN <README.md>",
"devDependencies": {
"@types/react-redux": "^5.0.14",
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-preset-react-app": "^3.1.0",
"babel-runtime": "^6.23.0",
"caniuse-lite": "^1.0.30000697",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"file-loader": "^1.1.5",
"husky": "0.14.3",
"ignore-loader": "^0.1.2",
"import": "0.0.6",
"node-sass": "^4.5.1",
"perfectionist": "^2.4.0",
"postcss-cli": "5.0.0",
"postcss-cssnext": "^3.0.2",
"postcss-easy-import": "^3.0.0",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-font-magician": "^2.1.0",
"postcss-loader": "^2.0.8",
"prettier": "1.12.1",
"pretty-quick": "1.4.1",
"sass-loader": "^6.0.6",
"style-loader": "0.20.2",
"url-loader": "^0.6.2"
},
"dependencies": {
"@storybook/addon-actions": "^3.2.13",
"@storybook/react": "^3.2.13",
"@types/immutable": "^3.8.7",
"@types/node": "9.4.6",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"awesome-typescript-loader": "3.4.1",
"hoist-non-react-statics": "^2.3.1",
"immutable": "^3.8.2",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-broadcast": "^0.6.1",
"react-dom": "^16.0.0",
"react-highlight": "briancappello/react-highlight#react-v16-compiled",
"react-redux": "^5.0.6",
"react-toggle": "^4.0.2",
"redux": "^3.7.2",
"typescript": "2.7.2",
"webpack": "^3.9.1"
}
}