forked from silverstripe/silverstripe-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "silverstripe-admin",
"version": "4.0.0",
"description": "SilverStripe admin interface",
"directories": {
"test": "tests"
},
"bin": {
"webpack": "./node_modules/webpack/webpack.js"
},
"engines": {
"node": "^6.x"
},
"scripts": {
"build": "yarn && yarn test && 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",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint client/src && sass-lint -v",
"js-fix": "eslint client/src --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/silverstripe/silverstripe-admin.git"
},
"keywords": [
"silverstripe",
"admin"
],
"author": "SilverStripe Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/silverstripe/silverstripe-admin/issues"
},
"homepage": "https://github.com/silverstripe/silverstripe-admin",
"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",
"graphql-fragments": "^0.1.0",
"graphql-tag": "^0.1.17",
"history": "^2.1.2",
"isomorphic-fetch": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"jquery-sizes": "^0.33.0",
"json-js": "^1.1.2",
"merge": "^1.2.0",
"modernizr": "^3.5.0",
"moment": "^2.18.1",
"page.js": "^4.13.3",
"qs": "^6.1.0",
"react": "15.3.1",
"react-addons-css-transition-group": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-apollo": "^0.7.0",
"react-bootstrap-ss": "^0.30.10",
"react-dnd": "^2.2.3",
"react-dnd-html5-backend": "^2.2.3",
"react-dom": "15.3.1",
"react-redux": "^4.4.1",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"react-select": "^1.0.0-rc.5",
"redux": "https://registry.npmjs.org/redux/-/redux-3.0.5.tgz",
"redux-form": "^6.0.2",
"redux-thunk": "^2.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",
"babel-jest": "^20.0.3",
"jest-cli": "^19.0.2"
},
"resolutions": {
"eslint": "^4.6.1"
},
"jest": {
"roots": [
"client/src"
],
"moduleDirectories": [
"client/src",
"node_modules",
"node_modules/@silverstripe/webpack-config/node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}