forked from silverstripe/silverstripe-asset-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.04 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
{
"name": "silverstripe-asset-admin",
"version": "0.0.0",
"description": "Asset management for the SilverStripe CMS",
"main": "./client/src/boot/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/open-sausages/silverstripe-asset-admin.git"
},
"homepage": "https://github.com/open-sausages/silverstripe-asset-admin",
"bugs": {
"url": "https://github.com/open-sausages/silverstripe-asset-admin/issues"
},
"author": "SilverStripe Ltd",
"engines": {
"node": "^6.x"
},
"scripts": {
"build": "webpack --bail --progress",
"watch": "webpack --progress --config ./webpack-dev.config.js --watch",
"test": "jest",
"coverage": "jest --coverage",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint client/src -v",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "sass-lint client/src -v"
},
"jest": {
"roots": [
"client/src"
],
"modulePaths": [
"client/src",
"../silverstripe-admin/client/src",
"../silverstripe-admin",
"silverstripe-admin/client/src",
"silverstripe-admin"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.7.7",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"deep-freeze-strict": "^1.1.1",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jest-cli": "^19.0.2",
"node-sass": "^3.8.0",
"postcss-loader": "^0.10.1",
"redux-mock-store": "0.0.6",
"resolve-url-loader": "^1.6.0",
"sass-lint": "^1.9.1",
"sass-loader": "^4.0.0",
"script-loader": "^0.7.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"dependencies": {
"apollo-client": "^0.5.22",
"babel-polyfill": "6.7.4",
"bootstrap": "4.0.0-alpha.2",
"dropzone": "https://registry.npmjs.org/dropzone/-/dropzone-4.3.0.tgz",
"graphql-fragments": "^0.1.0",
"graphql-tag": "^0.1.17",
"griddle-react": "^0.7.0",
"jquery": "^3.1.1",
"qs": "^6.2.1",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-apollo": "^0.7.1",
"react-bootstrap-ss": "^0.30.6",
"react-dnd": "^2.2.3",
"react-dnd-html5-backend": "^2.2.3",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.3.1",
"redux-form": "^6.0.2",
"redux-logger": "^2.4.0",
"redux-thunk": "^1.0.3"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}