-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "grommet-sandbox",
"version": "0.1.0",
"main": "src/index.js",
"description": "Sandbox of Grommet component examples.",
"homepage": "http://v2.grommet.io",
"bugs": "https://github.com/grommet/grommet-sandbox/issues",
"repository": {
"type": "git",
"url": "https://github.com/grommet/grommet-sandbox.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"lint": "eslint src",
"start": "webpack-dev-server --mode development --open"
},
"dependencies": {
"grommet": "https://github.com/grommet/grommet/tarball/stable",
"grommet-icons": "^4.0.0",
"history": "^4.7.2",
"moment": "^2.20.1",
"prop-types": "^15.5.10",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-formify": "^0.1.0",
"react-router-dom": "^4.1.2",
"styled-components": "^5.3.0",
"url-search-params": "^0.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"deep-assign": "^2.0.0",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-parallel": "^0.3.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.7.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"react-dev-utils": "^11.0.4",
"simple-git": "^1.92.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.1"
},
"pre-commit": [
"lint"
]
}