-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.4 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
{
"name": "graasp-repo",
"author": "Graasp Association",
"version": "0.1.0",
"description": "Repository template for Graasp",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"pre-commit": "pretty-quick --staged && yarn lint",
"prepare": "yarn build",
"prepack": "yarn build",
"prettier:check": "prettier --check \"{src,test}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,test}/**/*.ts\"",
"test": "jest --forceExit --coverage --verbose",
"test:watch": "yarn test --watchAll",
"lint": "eslint ."
},
"repository": "git@github.com:graasp/graasp-repo.git",
"license": "AGPL",
"bugs": {
"url": "https://github.com/graasp/graasp-repo/issues"
},
"homepage": "https://github.com/graasp/graasp-repo#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^8.3.0",
"husky": "7.0.4",
"jest": "27.3.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.2",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
},
"packageManager": "yarn@3.2.0-rc.8"
}