-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
40 lines (40 loc) · 1.07 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc",
"run:example": "DEBUG=* node ./dist/examples/index.js",
"example": "rm -rf dist/ && tsc --project ./tsconfig.dev.json && npm run run:example",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.8.3",
"@types/debug": "^4.1.5",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-xo": "^0.29.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.1.2",
"prettier": "^1.19.1",
"readline": "^1.3.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}