forked from marczhermo/swiftype-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.12 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
{
"name": "silverstripe-sscounter",
"version": "1.0.0",
"description": "Button SSCounter",
"directories": {
"test": "tests"
},
"engines": {
"node": "^6.x"
},
"scripts": {
"build": "yarn && yarn test && NODE_ENV=production webpack -p --bail --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "yarn && WEBPACK_CHILD=css webpack -p --bail --progress",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint client/src && sass-lint -v client/src"
},
"repository": {
"type": "git",
"url": "git://github.com/marczhermo/silverstripe-sscounter.git"
},
"keywords": [
"silverstripe",
"admin"
],
"author": "Marco Hermo",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/marczhermo/silverstripe-sscounter/issues"
},
"homepage": "https://github.com/marczhermo/silverstripe-sscounter",
"dependencies": {
"bootstrap": "4.0.0-beta",
"classnames": "^2.2.5",
"deep-freeze-strict": "^1.1.1",
"es6-promise": "^3.1.2",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-bootstrap-ss": "^0.30.9",
"react-dom": "^15.3.1",
"react-redux": "^4.4.1",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "https://registry.npmjs.org/redux/-/redux-3.0.5.tgz",
"redux-form": "^6.0.2",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"window-or-global": "^1.0.1"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.4.0",
"babel-jest": "^19.0.0",
"jest-cli": "^19.0.2",
"toposort": "^1.0.3",
"validator": "^6.1.0"
},
"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"
}
},
"babel": {
"presets": [
"react",
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}