forked from silverstripe/silverstripe-mfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.21 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
{
"name": "silverstripe-mfa",
"main": "./client/src/boot/index.js",
"license": "BSD-3-Clause",
"homepage": "https://github.com/silverstripe/silverstripe-mfa",
"author": "SilverStripe Ltd",
"engines": {
"node": ">=10.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 --passWithNoTests",
"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"
},
"dependencies": {
"@silverstripe/react-injector": "^0.2.1",
"@silverstripe/reactstrap-confirm": "^0.0.4",
"classnames": "^2.2.6",
"core-js": "^3.1.4",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.24.0",
"printd": "^1.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.3",
"react-redux": "^7.0.3",
"reactstrap": "^8.0.0",
"redux": "^4.0.1",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@silverstripe/eslint-config": "^0.0.5",
"@silverstripe/webpack-config": "^1.1.0",
"babel-jest": "^23.6.0",
"copy-webpack-plugin": "^4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.10.0",
"jest-cli": "^23.6.0"
},
"jest": {
"roots": [
"client/src"
],
"modulePaths": [
"client/src"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/boot/**",
"!**/bundles/**",
"!**/legacy/**",
"!**/vendor/**",
"!**/*-test.{js,jsx}",
"!**/*-story.{js,jsx}"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
},
"setupFiles": [
"<rootDir>/tests/js/bootstrap.js"
]
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}