-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.23 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": "@mangoweb/contember-plugins",
"version": "0.23.2",
"description": "Common contember plugins.",
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "npm run eslint:lint",
"eslint:lint": "eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"clean": "rimraf dist/",
"build": "npm run clean && tsc && npm run copy-sass-to-dist",
"copy-sass-to-dist": "cp src/translations/admin/theme.sass dist/translations/admin/theme.sass && cp src/collapsibleBox/admin/CollapsibleBox.module.sass dist/collapsibleBox/admin/CollapsibleBox.module.sass",
"dev": "npm run start-engine && concurrently npm:start-admin npm:watch-src",
"watch-src": "tsc --watch",
"contember": "docker-compose run --rm contember-cli",
"start-admin": "vite admin --port 1480 --host 0.0.0.0",
"start-engine": "docker-compose up --detach && npm run contember migrations:execute -- --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manGoweb/contember-plugins.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"@contember/admin": "^1.1.0-beta.4",
"@contember/schema-definition": "^1.2.0-alpha.18",
"react": "^18"
},
"devDependencies": {
"@contember/admin": "^1.1.0-beta.4",
"@contember/admin-i18n": "^1.1.0-beta.4",
"@contember/client": "^1.1.0-beta.4",
"@contember/schema": "^1.2.0-alpha.18",
"@contember/schema-definition": "^1.2.0-alpha.18",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"concurrently": "^7.6.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "2.6.0",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"typescript": "4.6.2",
"vite": "^4.0.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/manGoweb/contember-plugins/issues"
},
"homepage": "https://github.com/manGoweb/contember-plugins#readme",
"dependencies": {
"clsx": "^1.2.1",
"snappyimg": "^0.5.0"
}
}