forked from sheadawson/silverstripe-linkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "display-logic",
"version": "4.0.0",
"description": "Display logic module for interface",
"directories": {
},
"bin": {
"webpack": "./node_modules/webpack/webpack.js"
},
"engines": {
"node": "^6.x"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lint": "eslint client/src && sass-lint -v",
"js-fix": "eslint client/src --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/unclecheese/silverstripe-display-logic.git"
},
"keywords": [
"silverstripe",
"module"
],
"author": "Uncle Cheese",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unclecheese/silverstripe-display-logic/issues"
},
"homepage": "https://github.com/unclecheese/silverstripe-display-logic",
"dependencies": {
"apollo-client": "^0.5.5",
"babel-polyfill": "^6.26.0",
"bootstrap": "4.0.0-beta",
"chosen-js": "^1.5.1",
"classnames": "^2.2.5",
"deep-equal": "^1.0.1",
"deep-freeze-strict": "^1.1.1",
"detect-browser": "^1.12.0",
"es6-promise": "^3.1.2",
"merge": "^1.2.0",
"modernizr": "^3.5.0",
"moment": "^2.18.1",
"page.js": "^4.13.3",
"qs": "^6.1.0",
"tether": "^1.3.2",
"toposort": "^1.0.3",
"url": "^0.11.0",
"validator": "^6.1.0"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.4.0"
},
"resolutions": {
"eslint": "^4.6.1"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}