-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__template.package.json
80 lines (80 loc) · 2.13 KB
/
__template.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "<%= name %>",
"version": "0.0.1",
"scripts": {
"dev": "parcel ./public/index.html",
"build": "rimraf -rf dist && parcel build ./public/index.html --experimental-scope-hoisting",
"test": "jest",
"commit": "git add -A && git-cz",
"lint": "eslint --ext .tsx ./src",
"prettier": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"alias": {
"@/pages": "./src/pages",
"@/components": "./src/components"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "static",
"staticOutDir": "static"
}
],
"watcherGlob": "**"
},
"license": "MIT",
"dependencies": {
"parcel-bundler": "^1.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ice/spec": "^1.0.1",
"@jest/core": "^26.6.3",
"@testing-library/react-hooks": "^5.0.3",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-jest": "^26.6.3",
"babel-plugin-import": "^1.13.3",
"commitizen": "^4.2.3",
"commitlint-config-cz": "^0.13.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"enzyme": "^3.11.0",
"eslint": "^7.19.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1"
}
}