-
Notifications
You must be signed in to change notification settings - Fork 625
/
package.json
110 lines (110 loc) · 3.39 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": "locomotivecms-ui",
"version": "1.0.0",
"description": "ReactJS components to power the UI of LocomotiveCMS",
"main": "index.js",
"scripts": {
"dev": "webpack --config ./config/webpack/development.js --mode development --watch",
"build": "webpack --config ./config/webpack/production.js --mode production",
"build:svg": "svgr -d ./app/javascript/src/locomotive/svg/generated ./app/javascript/src/locomotive/svg",
"test": "jest ./app/javascript/test",
"test:watch": "npm test -- --watch"
},
"keywords": [
"locomotiveCMS"
],
"author": "Didier Lafforgue",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@svgr/cli": "^2.2.0",
"acorn": "^5.7.4",
"autoprefixer": "^9.6.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.1.2",
"cryptiles": "^4.1.2",
"css-loader": "^3.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"fstream": "^1.0.12",
"handlebars": "^4.3.0",
"hoek": "^4.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"js-yaml": "^3.13.0",
"jsdom": "^12.0.0",
"macaddress": "^0.2.9",
"mini-css-extract-plugin": "^0.4.0",
"minimist": "^1.2.2",
"mixin-deep": ">=1.3.2",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "^4.12.0",
"postcss-flexbugs-fixes": "^3.3.1",
"postcss-loader": "^3.0.0",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^7.1.0",
"serialize-javascript": "^3.1.0",
"set-value": ">=2.0.1",
"style-loader": "^0.21.0",
"tar": "^2.2.2",
"webpack": "^4.2.1",
"webpack-cli": "^3.3.12",
"yargs-parser": "^13.1.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"classnames": "^2.2.5",
"client-compress": "^2.1.2",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.8.4",
"html-to-draftjs": "^1.4.0",
"i18next": "^11.9.0",
"immutability-helper": "^3.0.1",
"immutable": "^3.8.2",
"lodash": "^4.17.19",
"memoize-one": "^5.1.1",
"prop-types": "^15.6.2",
"rc-slider": "^8.6.13",
"rc-switch": "^1.8.0",
"react": "^17.0.2",
"react-autosuggest": "^9.4.3",
"react-awesome-popover": "^4.1.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.12.19",
"react-flip-toolkit": "^7.0.9",
"react-image-crop": "^5.0.0",
"react-js-pagination": "^3.0.2",
"react-redux": "^5.0.7",
"react-router-dom": "^5.2.0",
"react-sortable-hoc": "^0.8.0",
"react-sortly": "^3.0.4",
"react-transition-group": "^2.4.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"striptags": "^2.2.1"
},
"jest": {
"setupFiles": [
"./app/javascript/test/setupTests.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}