-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "react-legos",
"version": "0.1.5",
"main": "dist/index.js",
"description": "A React component to render LEGO bricks",
"scripts": {
"compile": "npm run build-styles && npm run build-lib",
"build-styles": "npx sass lib/lego.scss dist/lego.css -s compressed",
"build-lib": "rimraf dist && npx babel --presets minify lib --out-dir dist",
"start": "start-storybook -p 8001",
"build": "build-storybook -o public",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"react",
"lego",
"react-lego",
"react-legos",
"brick",
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/brycedorn/react-legos"
},
"homepage": "https://bryce.io/react-legos",
"author": {
"name": "Bryce Dorn",
"email": "[email protected]",
"url": "https://www.bryce.io"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-centered": "^5.2.6",
"@storybook/addon-knobs": "^5.2.6",
"@storybook/addon-notes": "^5.2.6",
"@storybook/addon-options": "^5.2.6",
"@storybook/react": "^5.2.6",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.2.0",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-react": "^7.20.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"polished": "^3.6.4",
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}