-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "PACKAGE_NAME",
"version": "0.1.0",
"description": "",
"main": "dist/DISTRIBUTION_NAME.js",
"author": "AUTHOR_NAME",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build:lib && npm run build:dist",
"build-storybook": "build-storybook",
"build:dist": "rollup -c && rollup -c --environment PRODUCTION",
"build:lib": "babel src --out-dir lib",
"clean": "npm run clean:lib ; npm run clean:dist",
"clean:lib": "rm -rf lib/*",
"clean:dist": "rm -rf dist/*",
"deps": "npm run yarn",
"lint": "xo src/**/*.js --space",
"lint:fix": "eslint --fix src",
"storybook": "start-storybook -p 6006",
"yarn": "yarn install"
},
"bugs": {
"url": "https://github.com/GITHUB_NAME/REPOSITORY_NAME/issues"
},
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/GITHUB_NAME/REPOSITORY_NAME.git"
},
"xo": {
"extends": "xo-react"
},
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"dotenv": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.7.1",
"inquirer": "^1.3.0",
"react": "^15.3.2",
"react-dom": "^15.4.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"styled-components": "^1.0.10",
"xo": "^0.17.1"
},
"peerDependencies": {
"react": "15.x",
"styled-components": "1.x"
}
}