-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.12 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
{
"scripts": {
"build": "MODE=prod rollup -c",
"pack": "for d in build/*; do (cd \"$d\" && npm pack --pack-destination ..); done",
"build-tools": "for d in tools/*; do (cd \"$d\" && npm run build); done",
"build:dev": "MODE=dev rollup -cw",
"lint": "eslint packages/*/src/** tools/*/src/**",
"lint:examples": "eslint examples/client/** examples/server/** examples/shared/**",
"test": "jest --coverage --verbose",
"postinstall": "for d in packages/*; do (cd \"$d\" && npm i --legacy-peer-deps); done",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ni55aN/easyhard.js.git"
},
"author": "Vitaliy Stoliarov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ni55aN/easyhard.js/issues"
},
"homepage": "https://github.com/Ni55aN/easyhard.js#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"@testing-library/jest-dom": "5.16.4",
"@types/cookie": "0.5.1",
"@types/express": "4.17.13",
"@types/jest": "27.5.1",
"@types/node-fetch": "2.6.1",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"commitizen": "4.2.2",
"cookie": "0.5.0",
"core-js": "3.22.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.15.0",
"express": "4.18.1",
"fast-check": "2.25.0",
"fromentries": "1.3.2",
"fs-extra": "10.1.0",
"history": "5.3.0",
"husky": "8.0.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"node-fetch": "2.6.7",
"recast": "0.21.1",
"rollup": "2.74.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-polyfill-node": "0.9.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"rxjs": "7.5.5",
"ts-jest": "28.0.2",
"typescript": "4.6.4",
"ws": "8.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "^2.2.0"
},
"engines": {
"npm": ">=7.0.0"
}
}