forked from silverstripe/silverstripe-elemental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.4 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
{
"name": "silverstripe-elemental",
"version": "1.0.0",
"description": "Compose your SilverStripe content of Elements",
"scripts": {
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lint": "eslint client/src; sass-lint client/src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnadesign/silverstripe-elemental.git"
},
"keywords": [
"silverstripe",
"elemental",
"content blocks"
],
"author": "DNA Designed Communications Limited",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dnadesign/silverstripe-elemental/issues"
},
"homepage": "https://github.com/dnadesign/silverstripe-elemental#readme",
"dependencies": {
"classnames": "^2.2.5",
"graphql-tag": "^0.1.17",
"jquery": "^3.2.1",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-apollo": "^0.7.1",
"react-redux": "^4.4.1",
"reactstrap": "^5.0.0-beta",
"redux": "^3.3.1"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.4.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"bootstrap": "4.0.0-beta",
"css-loader": "^0.28.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"graphql-tag": "^0.1.17",
"jest-cli": "^19.0.2",
"react-apollo": "^0.7.1",
"webpack": "^2.6.1"
},
"jest": {
"roots": [
"client/src"
],
"moduleDirectories": [
"client/src",
"node_modules",
"node_modules/@silverstripe/webpack-config/node_modules",
"../../admin/client/src",
"../../admin/node_modules",
"vendor/silverstripe/admin/client/src",
"vendor/silverstripe/admin/node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"engines": {
"node": "^6.x"
}
}