-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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
{
"name": "@elemental-design/style-guide",
"version": "0.0.2",
"description": "Generate a cross-platform style guide from a JSON theme based on our schema.",
"main": "lib/bundle.web.js",
"sketch": "lib/bundle.sketch.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf lib/",
"build:js": "rollup -c",
"build:types": "tsc -d true --emitDeclarationOnly --declarationDir lib",
"build": "npm run clean && npm run build:js && npm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elemental-design/style-guide.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/elemental-design/style-guide/issues"
},
"homepage": "https://github.com/elemental-design/style-guide#readme",
"dependencies": {
"@mdx-js/react": "^1.5.7",
"chroma-js": "^2.1.0",
"react": "^16.13.0",
"react-native-web": "^0.12.2",
"react-primitives": "^0.8.0",
"react-primitives-svg": "0.0.3",
"react-sketchapp": "^3.1.0",
"react-test-renderer": "^16.13.0",
"styled-components": "^5.0.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/chroma-js": "^2.0.0",
"@types/react": "^16.9.23",
"@types/styled-components": "^5.0.1",
"@types/styled-system": "^5.1.9",
"elemental-react": "^0.1.1",
"rollup": "^2.0.3",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "16.x"
}
}