-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.12 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
88
{
"name": "wagtailmodelchoosers",
"version": "0.1.2",
"description": "Allows you to pick generic models (rather than snippets or pages)",
"main": "setup.py",
"keywords": [],
"author": "Springload",
"license": "MIT",
"homepage": "https://github.com/springload/wagtailmodelchoosers#readme",
"bugs": {
"url": "https://github.com/springload/wagtailmodelchoosers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/springload/wagtailmodelchoosers.git"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"> 1%",
"IE 11"
]
}
}
],
"react"
]
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"arrow-body-style": [
"off"
],
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js"
]
}
]
},
"env": {
"browser": true
}
},
"dependencies": {
"draft-js": "^0.10.0",
"draftail": "^0.6.0",
"promise": "^8.0.0",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-autosuggest": "^3.7.4",
"react-dom": "^15.4.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.22.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-springload": "1.0.2",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "^2.0.0",
"jest": "^19.0.2",
"nightmare": "^2.10.0",
"react-test-renderer": "^15.5.4",
"webpack": "^2.2.1"
},
"scripts": {
"start": "webpack --config wagtailmodelchoosers/client/webpack.config.dev.js --watch",
"dist": "webpack --config wagtailmodelchoosers/client/webpack.config.prod.js",
"lint": "eslint wagtailmodelchoosers/client"
}
}