forked from sulu/sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.34 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
{
"name": "sulu-sulu",
"license": "MIT",
"repository": "https://github.com/sulu/sulu.git",
"scripts": {
"lint:js": "eslint .",
"lint:scss": "stylelint src/Sulu/Bundle/*/Resources/js/**/*.scss",
"flow": "flow",
"test": "jest",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"build": "webpack -p",
"watch": "webpack -d -w"
},
"dependencies": {
"sulu-admin-bundle": "file:src/Sulu/Bundle/AdminBundle/Resources/js",
"sulu-content-bundle": "file:src/Sulu/Bundle/ContentBundle/Resources/js",
"sulu-media-bundle": "file:src/Sulu/Bundle/MediaBundle/Resources/js",
"sulu-preview-bundle": "file:src/Sulu/Bundle/PreviewBundle/Resources/js",
"sulu-security-bundle": "file:src/Sulu/Bundle/SecurityBundle/Resources/js"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.25.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"core-js": "^2.5.1",
"css-loader": "^0.28.4",
"empty": "^0.10.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.41.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.6.1",
"file-loader": "^1.1.11",
"flow-bin": "^0.86.0",
"glob": "^7.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.0.0",
"jest-canvas-mock": "^1.0.2",
"mini-css-extract-plugin": "^0.4.0",
"mobx": "^4.0.0",
"mobx-react": "^5.0.0",
"moment-timezone": "^0.5.14",
"null-loader": "^0.1.1",
"postcss-calc": "^6.0.1",
"postcss-hexrgba": "^1.0.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.1.0",
"postcss-simple-vars": "^4.0.0",
"pretty": "^2.0.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-styleguidist": "^7.0.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"stylelint": "^7.12.0",
"stylelint-config-standard": "^16.0.0",
"url-search-params-polyfill": "^2.0.0",
"webpack": "^4.20.2",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^3.1.1",
"webpack-manifest-plugin": "^2.0.2",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"moduleNameMapper": {
"\\.(scss|css)$": "identity-obj-proxy",
"\\.svg$": "<rootDir>/tests/js/mocks/svg.js"
},
"setupFiles": [
"jest-canvas-mock"
],
"setupTestFrameworkScriptFile": "./tests/js/testSetup.config.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"clearMocks": true,
"transformIgnorePatterns": [
"node_modules/(?!(sulu-(.*)-bundle|@ckeditor|lodash-es)/)"
],
"testURL": "http://localhost"
}
}