This repository was archived by the owner on Mar 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "scratch-book",
"version": "1.0.0",
"private": true,
"description": "GraphQL Scratch book",
"main": "index.js",
"scripts": {
"build": "webpack --mode production --config ./config/webpack.production.js",
"dev": "webpack-dev-server --config ./config/webpack.development.js",
"lint": "eslint --cache -c .eslintrc.js --ext .jsx,.js src/application config",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seneil/scratch-book.git"
},
"keywords": [],
"author": {
"name": "Dmitry Shvalyov",
"url": "http://shvalyov.ru"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/seneil/scratch-book/issues"
},
"homepage": "https://github.com/seneil/scratch-book#readme",
"dependencies": {
"@babel/core": "7.6.2",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"@hot-loader/react-dom": "16.9.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"html-webpack-plugin": "3.2.0",
"prop-types": "15.7.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-hot-loader": "4.12.14"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "1.7.0",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.2"
}
}