-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "rakered",
"description": "The open source components from rake.red",
"homepage": "https://rake.red",
"private": true,
"scripts": {
"clean": "rimraf \"packages/**/dist\" \"packages/**/*.tsbuildinfo\"",
"start:db": "mongod --dbpath ../.db --replSet rs0",
"test": "lerna run test",
"build": "lerna run build",
"prepare": "npm run clean && npm run build",
"lint": "tsc --noEmit && eslint . --quiet --fix",
"ci:lint": "eslint -c .eslintrc.js",
"ci:tsc": "tsc --noEmit --project ./tsconfig.json"
},
"devDependencies": {
"@types/bson": "^4.2.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lerna": "3.22.1",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"workspaces": [
"./packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}