-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"private": true,
"workspaces": [
"packages/*",
"playground/**/*"
],
"devDependencies": {
"@asto/esm": "^0.0.2",
"@asto/webpack": "^0.0.3",
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jest": "^29.5.5",
"@types/mime-types": "^2.1.2",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@yarnpkg/sdks": "^3.1.0",
"asto": "^0.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cross-env": "^7.0.3",
"esbuild": "^0.20.1",
"esbuild-node-externals": "^1.9.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lerna": "^7.4.2",
"sendary": "^0.0.0-alpha.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.5.0",
"tsconfig-paths-jest": "^0.0.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.3.3",
"webpack": "^5.88.2",
"zept": "^0.0.4"
},
"scripts": {
"version": "lerna version",
"publish:beta": "yarn lerna publish from-package --canary --preid next --tag-version-prefix next --yes --no-private",
"publish": "yarn lerna publish from-package --no-private",
"publish:o": "yarn run version && yarn build && yarn run publish",
"tag:release": "lerna publish from-package --yes --no-git-tag-version",
"dev": "cross-env NODE_ENV=development asto --watch",
"build:dev": "cross-env NODE_ENV=development asto",
"build": "cross-env NODE_ENV=production asto",
"test": "jest",
"lint-fix": "eslint --fix --ext .js,.ts ."
},
"version": "0.0.0",
"packageManager": "[email protected]"
}