-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
69 lines (69 loc) · 2.62 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
{
"name": "frontend_editing",
"version": "0.1.0",
"description": "Enable editors to work with the content in the most intuitive way possible",
"scripts": {
"add:resource:toastr": "NODE_ENV=production npm install && cp -a ./node_modules/toastr/toastr.js ./Resources/Public/Javascript/contrib/toastr.js",
"add:resource:immutable": "NODE_ENV=production npm install && cp -a ./node_modules/immutable/dist/immutable.js ./Resources/Public/Javascript/Contrib/immutable.js",
"add:resource:dexie": "NODE_ENV=production npm install && cp -a ./node_modules/dexie/dist/dexie.min.js ./node_modules/dexie/dist/dexie.min.js.map ./Resources/Public/JavaScript/Contrib/",
"build:extension": "npm run add:resource:toastr && npm run add:resource:immutable && npm run add:resource:dexie && npm run build:resource:ulog && npm run build:css",
"build:resource:ulog": "NODE_ENV=production npm install && webpack --config ./webpack.contrib.config.js --mode production",
"watch:css": "node-sass -rwx Resources/Private/Sass/ -o Resources/Public/Css/",
"check:css": "stylelint -s scss Resources/Private/Sass/",
"compile:css": "node-sass -x Resources/Private/Sass/ -o Resources/Public/Css/",
"caniuse:css": "doiuse Resources/Public/Css/*.css",
"postcss:css": "postcss -r Resources/Public/Css/*.css",
"build:css": "npm run check:css && npm run compile:css && npm run postcss:css",
"build:suite": "npm run build:css",
"test:js": "jest",
"browserslist": "browserslist"
},
"dependencies": {
"dexie": "^3.0.3",
"immutable": "^3.8",
"pino": "^6.11.1",
"toastr": "^2.1.2",
"ulog": "^2.0.0-beta.18",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"autoprefixer": "^7.2.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"doiuse": "^4.4.0",
"eslint": "^7.17.0",
"html-loader": "^1.3.2",
"jest": "^26.6.3",
"jquery": "^3.4.1",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-clean": "^1.1.0",
"postcss-cli": "^4.1.1",
"postcss-loader": "^4.1.0",
"puppeteer": "^5.5.0",
"react": "^16",
"react-dom": "^16",
"spdx-license-ids": "^3.0.7",
"stylelint": "^8.4.0"
},
"browserslist": [
"Firefox ESR",
"Chrome >= 57",
"Firefox >= 52",
"Edge >= 14",
"Explorer >= 11",
"iOS >= 9",
"Safari >= 8",
"Android >= 4",
"Opera >= 43"
],
"repository": {
"type": "git",
"url": "https://github.com/friendsoftypo3/frontend_editing.git"
},
"author": "TYPO3 Community",
"license": "ISC",
"homepage": "https://github.com/friendsoftypo3/frontend_editing"
}