-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 KB
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
{
"name": "replikit",
"description": "A powerful framework for building universal strongly typed bots",
"author": "Exeteres",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint \"{packages,example/modules}/*/{src,tests,typings}/**/*.ts\" --max-warnings=0",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"clean": "lerna exec -- rimraf dist",
"build": "lerna run build",
"publish-packages": "lerna publish from-git -y",
"release": "lerna version --conventional-commits --create-release github",
"postinstall": "ts-patch install -s"
},
"workspaces": [
"packages/*",
"example"
],
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"jest-watch-suspend": "^1.1.2",
"lerna": "^3.20.2",
"mongodb-memory-server": "^6.6.6",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"ts-patch": "^1.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.2",
"typescript-transform-paths": "^2.0.0"
}
}