forked from Vizzuality/widget-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
70
71
72
73
74
75
76
77
78
{
"name": "widget-editor",
"version": "2.0.0-v2-beta.1",
"private": true,
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.17",
"node": ">=12.16.3"
},
"workspaces": [
"src/applications/*",
"src/packages/*",
"src/playground/*",
"src/adapters/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start:widget-editor": "npm-run-all --parallel watch:*",
"deploy": "rimraf -f dist && lerna run build && lerna run tsc && lerna publish --force-publish",
"deploy:playground": "cd src/playground/widget-editor && npm run deploy",
"lerna:publish": "lerna publish --conventional-commits --yes --skip-npm --skip-git",
"prebuild": "lerna run build --ignore @widget-editor/playground",
"build": "rimraf -f dist && lerna run compile && lerna run tsc",
"compile:ts": "lerna run tsc",
"watch:packages": "lerna run watch --parallel",
"watch:widget-editor": "SKIP_PREFLIGHT_CHECK=true lerna run start --parallel --scope @widget-editor/playground --stream",
"build:widget-editor": "cd src/playground/widget-editor && npm run build",
"test:packages": "jest ./src/packages",
"test:adapters": "jest --verbose ./src/adapters",
"pretest": "yarn build",
"test": "SKIP_PREFLIGHT_CHECK=true npm-run-all --parallel test:*",
"lint:js": "eslint ./src -c .eslintrc.json --ext js,jsx",
"lint:ts": "tslint -c tslint.json src/**/*.ts",
"migrate": "node ./migrations/cli/index.js"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.12.13",
"@babel/eslint-plugin": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-react-css-modules": "^5.2.6",
"babel-watch": "^7.0.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"dotenv-cli": "^3.1.0",
"eslint": "^7.19.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"esm": "^3.2.22",
"jest": "^27.4.7",
"lerna": "latest",
"node-fetch": "^2.5.0",
"npm-run-all": "^4.1.5",
"rollup-plugin-babel": "^4.4.0",
"ts-jest": "^27.1.2",
"tslint": "^6.1.3",
"typescript": "^4.5.4",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"rimraf": "^3.0.2"
},
"resolutions": {
"moment": "2.24.0"
}
}