-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "materials",
"version": "0.0.1",
"description": "Micro frontend site serving",
"scripts": {
"init": "lerna bootstrap --hoist",
"init:scope": "cross-env lerna bootstrap --hoist --scope $SCOPE",
"lint": "eslint . --ext js,jsx,ts,tsx",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests",
"format": "prettier --write \"./**\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dazedbear/materials.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dazedbear/materials/issues"
},
"homepage": "https://github.com/dazedbear/materials#readme",
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "pretty-quick --staged && concurrently npm:test npm:lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.8.7",
"@types/jest": "^25.2.1",
"@types/webpack-env": "^1.15.1",
"babel-eslint": "^11.0.0-beta.2",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-ts-important-stuff": "^1.0.0",
"eslint-plugin-prettier": "^3.1.1",
"html-webpack-plugin": "^4.0.4",
"husky": "^4.2.3",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"lerna": "^3.22.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"serve": "^11.2.0",
"typescript": "^3.8.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}