This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 3.16 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
{
"name": "agile",
"private": true,
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
"description": "Global State and Logic Library",
"keywords": [
"agile",
"agile-ts",
"react-component",
"react",
"reactjs",
"reactive",
"simple"
],
"syncDir": "dist",
"scripts": {
"build": "lerna run build",
"changelog": "lerna-changelog",
"bootstrap": "lerna bootstrap",
"watch:core": "cd packages/core && yarn run watch",
"watch:react": "cd packages/react && yarn run watch",
"watch:multieditor": "cd packages/multieditor && yarn run watch",
"watch:api": "cd packages/api && yarn run watch",
"watch:event": "cd packages/event && yarn run watch",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"test:coverage:pushToCoveralls": "yarn run test:coverage && coveralls < coverage/lcov.info",
"dev:publish": "lerna run build && lerna run dev:publish",
"dev:push": "lerna run build && lerna run dev:push",
"install:packages": "lerna exec yarn install",
"install:packages:clean": "lerna run install:clean",
"version:bump": "changeset",
"release:prepare": "lerna run release:prepare && changeset publish",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,ts}\"",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
"pack": "lerna run build && lerna run pack",
"pack:core": "cd packages/core && yarn run build && yarn run pack",
"pack:react": "cd packages/react && yarn run build && yarn run pack",
"pack:multieditor": "cd packages/multieditor && yarn run build && yarn run pack",
"pack:api": "cd packages/api && yarn run build && yarn run pack",
"pack:event": "cd packages/event && yarn run build && yarn run pack",
"install:clean": "shx rm -rf yarn.lock && shx rm -rf node_modules && yarn install && lerna run install:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agile-ts/agile.git"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@changesets/cli": "^2.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"coveralls": "^3.1.1",
"esbuild": "^0.12.28",
"eslint": "^7.30.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-mock-console": "^1.1.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-esbuild": "^4.5.0",
"shx": "^0.3.3",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"tsc-watch": "^4.4.0",
"tslib": "^2.3.0",
"typescript": "^4.4.3",
"wait-for-expect": "^3.0.2"
},
"workspaces": [
"packages/*"
]
}