This repository has been archived by the owner on Jun 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "grid-emotion",
"version": "3.2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"author": "Brent Jackson",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-external-helpers": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/preset-flow": "^7.0.0-beta.32",
"@babel/preset-react": "^7.0.0-beta.32",
"@babel/preset-stage-0": "^7.0.0-beta.32",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-emotion": "^8.0.2-11",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"emotion": "^8.0.2-12",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"grid-styled": "^3.2.0",
"jest": "^21.2.1",
"jest-glamor-react": "^3.1.1",
"prettier": "^1.7.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-emotion": "^8.0.2-12",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.51.3",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-babel": "4.0.0-beta.0"
},
"dependencies": {
"clean-tag": "^1.0.3",
"prop-types": "^15.6.0",
"styled-system": "^2.1.0"
},
"peerDependencies": {
"emotion": "8 || 9",
"react-emotion": "8 || 9"
},
"scripts": {
"lint": "eslint . --fix --ignore-path .gitignore",
"build": "rimraf dist && rollup -c",
"test": "eslint . --ignore-path .gitignore && npm run build && jest",
"jest": "jest"
}
}