-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "dominion",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:boompig/dominion.git",
"author": "Daniel Kats <dbkats@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/react": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-react": "^7.18.0",
"husky": "^3.0.5",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn build && yarn test",
"pre-push": "yarn lint && yarn build && yarn test"
}
},
"scripts": {
"lint": "yarn eslint --ext .js,.ts cli.js src test",
"build": "yarn webpack",
"test": "yarn jest"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/lodash": "^4.14.149",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/parser": "^2.18.0",
"babel-loader": "^8.0.6",
"esm": "^3.2.25",
"flags": "^0.1.3",
"jest": "^24.8.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.5"
}
}