-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
75 lines (75 loc) · 2.17 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
{
"name": "styled-css-grid",
"version": "0.0.0-development",
"description": "A tiny CSS grid layout for React, built with styled-components",
"homepage": "https://styled-css-grid.js.org",
"main": "dist/styled-css-grid.umd.js",
"module": "dist/styled-css-grid.esm.js",
"repository": "https://github.com/azz/styled-css-grid",
"author": "Lucas Azzola",
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"grid",
"css",
"react",
"styled-components"
],
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write \"{lib,website,scripts}/*.js\"",
"test": "jest",
"build": "node scripts/build",
"watch:site": "rollup -c scripts/rollup.website.config.js -w",
"start": "http-server website/bin",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"styled-components": "^2 || ^3 || ^4 || ^5 || ^6"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-styled-components": "^1.1.7",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"common-tags": "^1.4.0",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"http-server": "^0.10.0",
"jest": "^20.0.4",
"jest-styled-components": "^4.2.2",
"lodash-es": "^4.17.4",
"normalize.css": "^7.0.0",
"prettier": "^1.5.3",
"prismjs": "^1.6.0",
"react": "next",
"react-dom": "next",
"react-test-renderer": "next",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"semantic-release": "24.0.0",
"shelljs": "^0.7.8",
"styled-components": "^2.1.1",
"uglify-es": "^3.0.26"
}
}