-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 4.1 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-base",
"version": "2.1.0",
"description": "React Base.",
"engines": {
"node": ">=8",
"npm": ">=3"
},
"scripts": {
"preinstall": "node tools/nodeVersionCheck.js",
"start": "concurrently -k -r -s first \"npm run open:src\" \"npm run lint:watch\"",
"open:src": "cross-env NODE_ENV=development babel-node tools/srcServer.js",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"fix-style": "stylelint \"src/**/*.scss\" --fix",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "rimraf ./dist",
"prebuild": "npm run lint && npm run clean-dist",
"build": "cross-env NODE_ENV=production babel-node tools/build.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"check-npm-updates": "npm-check-updates",
"update-packages": "npm-check-updates -u"
},
"dependencies": {
"@hot-loader/react-dom": "16.11.0",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"classnames": "^2.2.6",
"connected-react-router": "6.6.1",
"framer-motion": "^1.7.3",
"ios-inner-height": "^1.1.1",
"object-assign": "4.1.1",
"objectFitPolyfill": "^2.3.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-modal": "^3.11.1",
"react-redux": "7.1.3",
"react-router-dom": "5.1.2",
"react-select": "^3.0.8",
"redux": "4.0.5",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@babel/core": "7.8.3",
"@babel/node": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-react": "7.8.3",
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-docs": "^5.3.9",
"@storybook/addon-links": "^5.3.9",
"@storybook/addon-viewport": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/react": "^5.3.9",
"acorn": "7.1.1",
"ajv": "6.10.2",
"autoprefixer": "9.7.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-react-css-modules": "^5.2.6",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"browser-sync": "2.26.7",
"commander": "^4.1.0",
"concurrently": "5.0.2",
"connect-history-api-fallback": "1.6.0",
"cross-env": "^6.0.3",
"css-loader": "3.4.2",
"cssnano": "4.1.10",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-react": "7.17.0",
"eslint-watch": "6.0.1",
"file-loader": "5.0.2",
"hard-source-webpack-plugin": "0.13.1",
"history": "4.10.1",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"json-loader": "0.5.7",
"mini-css-extract-plugin": "0.9.0",
"mockdate": "2.0.5",
"node-sass": "^4.13.1",
"npm-check-updates": "^4.0.1",
"open-cli": "5.0.0",
"postcss-loader": "3.0.0",
"postcss-nested": "^4.2.1",
"postcss-scss": "^2.0.0",
"prompt": "1.0.0",
"prop-types": "15.7.2",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"raf": "3.4.1",
"react-hot-loader": "4.12.18",
"react-is": "^16.12.0",
"react-test-renderer": "16.12.0",
"redux-immutable-state-invariant": "2.1.0",
"redux-mock-store": "1.5.4",
"replace": "1.1.5",
"rimraf": "3.0.0",
"sass-loader": "8.0.2",
"style-loader": "1.1.2",
"stylelint": "^13.0.0",
"stylelint-order": "^4.0.0",
"stylelint-webpack-plugin": "^1.2.0",
"url-loader": "3.0.0",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "^4.2.2"
},
"keywords": [
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/coryhouse/react-slingshot"
}
}