-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "vk-io-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.20.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vuepress/plugin-back-to-top": "^1.9.7",
"@vuepress/plugin-medium-zoom": "^1.9.7",
"eslint": "8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"rollup": "^2.70.1",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",
"vuepress": "^1.9.7"
},
"scripts": {
"prepare": "yarn run rollup:build && yarn run test",
"build": "yarn run rollup:build",
"watch": "yarn run rollup:watch",
"clean": "rm -rf ./packages/*/lib",
"rollup:build": "NODE_ENV=production rollup -c rollup.config.js",
"rollup:watch": "yarn run rollup:build -w",
"docs:watch": "vuepress dev docs",
"docs:build": "sh scripts/deploy-docs.sh",
"test": "yarn run test:jest && yarn 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"
}
}