-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "vk-io-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.20.0"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vuepress/plugin-back-to-top": "^2.0.0-beta.54",
"@vuepress/plugin-medium-zoom": "^2.0.0-beta.54",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.3.1",
"rollup": "^3.10.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"vuepress": "2.0.0-beta.54"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "npm run rollup:build",
"watch": "npm run rollup:watch",
"clean": "rm -rf ./packages/*/lib",
"rollup:build": "NODE_ENV=production rollup -c rollup.config.js",
"rollup:watch": "npm run rollup:build -- -w",
"docs:watch": "vuepress dev docs",
"docs:build": "sh scripts/deploy-docs.sh",
"test": "npm run test:jest && npm run lint:eslint",
"test:jest": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.json --no-cache",
"lint:eslint": "eslint --ext .ts --ignore-path .gitignore packages/*/src/**/*.ts"
}
}