-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
87 lines (87 loc) · 2.74 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
86
87
{
"name": "hn-react-webform",
"version": "0.0.0",
"main": "lib/index.js",
"repository": "https://github.com/burst-digital/hn-react-webform",
"scripts": {
"start": "npm run build -- --watch",
"build": "rimraf lib && babel src --out-dir lib --copy-files",
"lint": "npm run lint-js",
"lint-js": "eslint --ext .jsx,.js src",
"lint-js-fix": "eslint --ext .jsx,.js src --fix",
"lint-js-watch": "node node_modules/eslint-watch/bin/esw -w --fix --ext .jsx,.js src",
"lint-fix": "npm run lint-js-fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "npm run lint && jest src",
"precommit": "lint-staged && jest src",
"semantic-release": "semantic-release pre && node utils/prepublish.js && npm publish && semantic-release post",
"postinstall": "node utils/postinstall.js"
},
"dependencies": {
"fetch-everywhere": "^1.0.5",
"get-nested": "^4.0.0",
"google_tag": "^1.1.1",
"html-entities": "^1.2.1",
"ibantools": "^1.3.0",
"mobx": "^4.9.4",
"mobx-react": "^5.4.3",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react-css-modules": "^4.3.0",
"react-day-picker": "^5.5.1",
"react-google-recaptcha": "^2.0.1",
"react-html-parser": "^1.0.3",
"react-input-mask": "^0.8.0",
"react-select": "^1.3.0",
"styled-components": "^3.3.3",
"validator": "^7.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"eslint-watch": "^3.1.0",
"highlight.js": "^9.11.0",
"husky": "^0.13.3",
"jest": "^20.0.4",
"jest-cli": "^20.0.3",
"json-loader": "^0.5.4",
"lint-staged": "^4.0.3",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.0.0",
"react-remarkable": "^1.1.1",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.2",
"storybook-readme": "^2.0.2",
"style-loader": "^0.17.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"webpack": "^2.5.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}