forked from remesh-js/remesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.51 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
{
"name": "remesh",
"license": "MIT",
"description": "A DDD framework",
"author": "https://github.com/Lucifier129",
"private": true,
"engines": {
"node": ">=14.x"
},
"scripts": {
"build": "run-s clean:build build:source clean:tests",
"build:dist": "tsc -b ./tsconfig.dist.json",
"build:source": "run-s build:dist",
"build:example": "run-s clean:example build:example:entry build:example:react build:example:vue",
"build:example:entry": "cd projects/entry && npm run build",
"build:example:react": "cd projects/react-demos && npm run build",
"build:example:vue": "cd projects/vue-demos && npm run build",
"clean": "run-p clean:build",
"clean:example": "shx rm -rf ./dist",
"clean:build": "shx rm -rf ./packages/*/*.tsbuildinfo && shx rm -rf ./packages/*/{dist,esm}",
"clean:tests": "shx rm -rf ./packages/*/{dist,esm}/**/__tests__",
"clean:deps": "shx rm -rf ./node_modules && shx rm -rf ./packages/*/node_modules && shx rm -rf ./projects/*/node_modules",
"lint": "eslint --report-unused-disable-directives ./packages",
"format": "run-p format:source format:other",
"format:other": "prettier ./**/*.{md,yml,json,html} --write",
"format:source": "prettier ./**/*.{ts,tsx,js,vue} --write",
"init": "pnpm install && pnpm run build",
"test": "pnpm run test --filter ./packages",
"test:coverage": "pnpm run test:coverage --filter ./packages",
"publish": "pnpm changeset publish",
"prepare": "husky install",
"prepublish": "pnpm run build",
"version": "pnpm changeset version --access public",
"release": "pnpm run version && pnpm run publish",
"prerelease": "pnpm run format && git add -A && pnpm run build",
"change": "pnpm changeset",
"fix": "eslint --fix ./packages"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"codecov": "^3.8.3",
"commitlint": "^17.0.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"shx": "^0.3.4",
"typescript": "^4.6.4",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"esno": "*"
}
}