-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.02 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
{
"name": "locator",
"version": "0.0.1",
"description": "SilverStripe Locator Module. Show locations on a map. Search by geoposition.",
"main": "client/src/js/boot/index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js -p --progress",
"build:dev": "webpack --config webpack.config.dev.js --progress",
"watch": "webpack --config webpack.config.dev.js --progress --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watchAll",
"lint": "eslint webpack.config.dev.js webpack.config.prod.js client/src/js client/src/tests"
},
"keywords": [
"locator",
"graphql",
"silverstripe",
"react",
"redux"
],
"author": "Dynamic <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/react-fontawesome": "0.0.18",
"animated-scroll-to": "^1.3.1",
"axios": "^0.18.1",
"babel-jest": "^24.9.0",
"bootstrap": "^4.5.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-maps": "^9.4.5",
"react-places-autocomplete": "^7.3.0",
"react-redux": "^5.1.2",
"redux": "^4.0.5",
"redux-form": "^7.4.3",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"@silverstripe/eslint-config": "0.0.5",
"@silverstripe/webpack-config": "^1.6.0",
"axios-mock-adapter": "^1.18.2",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"es6-promise": "^3.1.2",
"eslint": "^6.8.0",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^24.0.0",
"jest-cli": "^23.6.0",
"jest-enzyme": "^7.1.2",
"react-addons-test-utils": "15.0.0",
"remote-redux-devtools": "^0.5.13",
"style-loader": "^0.20.3"
},
"engines": {
"node": ">=10.10.0",
"npm": ">=6.0.0"
},
"browserslist": "> 1%",
"jest": {
"testURL": "http://locator.test",
"roots": [
"<rootDir>/client/src/",
"<rootDir>/client/tests/"
],
"collectCoverageFrom": [
"**/client/src/**/*.{js,jsx}"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/client/src/tests/"
],
"moduleDirectories": [
"node_modules",
"client/src/js"
],
"modulePaths": [
"client/src",
"../../silverstripe/admin/client/src",
"../../silverstripe/admin/node_modules",
"vendor/silverstripe/admin/client/src",
"vendor/silverstripe/admin/node_modules"
],
"setupFiles": [
"<rootDir>/client/src/tests/shim.js",
"<rootDir>/client/src/tests/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
}
}