-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.37 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
{
"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"
},
"dependencies": {
"sulu-admin-bundle": "file:src/Sulu/Bundle/AdminBundle/Resources/js",
"sulu-media-bundle": "file:src/Sulu/Bundle/MediaBundle/Resources/js"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"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-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"core-js": "^2.5.1",
"empty": "^0.10.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.0.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.11.2",
"flow-bin": "^0.54.0",
"glob": "^7.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.1.0",
"mobx": "^3.2.2",
"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",
"react-styleguidist": "^6.0.24",
"react-test-renderer": "^15.6.1",
"stylelint": "^7.12.0",
"stylelint-config-standard": "^16.0.0",
"webpack": "^3.5.6",
"webpack-clean-obsolete-chunks": "^0.2.0",
"webpack-manifest-plugin": "^1.3.2"
},
"jest": {
"moduleNameMapper": {
"\\.(scss|css)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"clearMocks": true,
"transformIgnorePatterns": [
"node_modules/(?!(sulu-(.*)-bundle)/)"
]
}
}