This repository has been archived by the owner on Oct 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.49 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
76
77
78
79
80
81
82
83
84
85
{
"name": "react-flipper",
"version": "0.0.0-development",
"author": "Visionist, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/VisionistInc/react-flipper.git"
},
"main": "lib/index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "yarn build:dist; yarn build:lib",
"build:lib": "NODE_ENV=production webpack",
"build:dist": "NODE_ENV=production webpack",
"pretty": "prettier-eslint --write \"{src,config}/**/*.@(js|jsx)\"",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"description": "React 'flipper' component that just gets it",
"license": "ISC",
"files": [
"lib"
],
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"commitizen": "^2.9.6",
"css-loader": "^0.28.5",
"cz-conventional-changelog": "^2.0.0",
"empty": "^0.10.1",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.54.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"prettier-eslint-cli": "^4.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "next",
"semantic-release": "^7.0.2",
"style-loader": "^0.18.2",
"uglify-js": "^3.0.28",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.5.5",
"webpack-dashboard": "^1.0.0-5",
"webpack-dev-server": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier-eslint --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease use `yarn cz` to commit your changes"
}
}
}