This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "hooktopia",
"version": "1.0.0",
"description": "Messing around with React's new hooks",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"test": "jest",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysforyou/hooktopia.git"
},
"keywords": [
"react",
"hooks"
],
"author": "Rhys Powell <rhys@rpowell.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysforyou/hooktopia/issues"
},
"homepage": "https://github.com/rhysforyou/hooktopia#readme",
"dependencies": {
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"redux": "^4.0.1",
"styled-components": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/redux-logger": "^3.0.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"prettier": "^1.14.3",
"redux-logger": "^3.0.6",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}