-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@zup-it/beagle-web",
"version": "1.1.0",
"main": "index.js",
"types": "index.d.ts",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"private": false,
"scripts": {
"fix-aliases": "node node_modules/tscpaths/cjs -p tsconfig.prod.json -s ./src -o ./dist",
"build": "tsc --project tsconfig.prod.json --declaration && node bin/copy-files && yarn fix-aliases",
"check-types": "tsc --project tsconfig.prod.json --noEmit",
"check-test-types": "tsc --project tsconfig.spec.json --noEmit --allowSyntheticDefaultImports",
"test": "jest",
"lint": "eslint ./src/**/*.ts",
"watch": "yarn nodemon --watch 'src/**/*.ts' -e ts --exec yarn build"
},
"husky": {
"hooks": {
"pre-commit": "sh ./bin/check-license.sh",
"pre-push": "yarn lint"
}
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/enzyme": "3.10.4",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.150",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-jest": "^25.1.0",
"babel-loader": "8.0.6",
"enzyme": "3.11.0",
"enzyme-to-json": "3.4.3",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "3.2.0",
"http-server": "^0.12.1",
"husky": "^4.2.5",
"jest": "^25.1.0",
"nock": "^12.0.1",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"source-map-loader": "0.2.4",
"ts-jest": "25.0.0",
"tscpaths": "https://github.com/Tiagoperes/tscpaths.git#498769882091cfe6fd8c4067bb50843dc4ca551e",
"typescript": "3.7.5",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-hot-middleware": "2.25.0"
}
}