forked from silverstripe/silverstripe-versioned-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.56 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
{
"name": "silverstripe-versioned-admin",
"version": "0.0.0",
"description": "Versioned management for the SilverStripe CMS",
"main": "./client/src/boot/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/silverstripe/silverstripe-versioned-admin.git"
},
"homepage": "https://github.com/silverstripe/silverstripe-versioned-admin",
"bugs": {
"url": "https://github.com/silverstripe/silverstripe-versioned-admin/issues"
},
"author": "SilverStripe Ltd",
"engines": {
"node": ">=6.x"
},
"scripts": {
"build": "yarn && yarn lint && 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",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint client/src",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "sass-lint client/src"
},
"jest": {
"roots": [
"client/src"
],
"modulePaths": [
"client/src",
"../admin/client/src",
"../admin/node_modules",
"vendor/silverstripe/admin/client/src",
"vendor/silverstripe/admin/node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"devDependencies": {
"@silverstripe/eslint-config": "^0.0.2",
"@silverstripe/webpack-config": "^0.10.0",
"babel-jest": "^19.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15.4": "^1.0.5",
"expose-loader": "^0.7.4",
"jest-cli": "^19.0.2",
"sass-loader": "^6.0.7"
},
"dependencies": {
"@storybook/addon-actions": "^3.2.16",
"@storybook/react": "^3.2.16",
"apollo-client": "^0.5.22",
"babel-polyfill": "6.7.4",
"bootstrap": "4.0.0",
"classnames": "^2.2.5",
"graphql-fragments": "^0.1.0",
"graphql-tag": "^0.1.17",
"griddle-react": "^0.7.0",
"jquery": "^3.1.1",
"moment": "^2.21.0",
"react": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-apollo": "^0.7.1",
"react-dom": "15.3.1",
"react-redux": "^4.4.5",
"react-resize-aware": "^2.7.1",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"reactstrap": "^5.0.0-beta",
"redux": "^3.3.1",
"uuid": "^3.2.1"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}