-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.44 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "porunga",
"version": "0.2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"private": false,
"publishConfig": {
"registry": "https://nexus.dev.nm.cbc.ca/repository/ocelot-modules/"
},
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@testing-library/react": "^9.3.2",
"@types/jest": "24.0.23",
"@types/lodash.merge": "^4.6.6",
"@types/node": "12.12.14",
"@types/react": "16.9.13",
"@types/react-dom": "16.9.4",
"@types/react-test-renderer": "^16.9.1",
"cz-conventional-changelog": "^3.0.2",
"emotion-theming": "^10.0.19",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"lodash.merge": "^4.6.2",
"path": "^0.12.7",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-docgen-typescript": "^1.16.0",
"react-dom": "^16.12.0",
"react-scripts": "3.2.0",
"react-styleguidist": "^10.2.1",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.9",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "3.7.2"
},
"peerDependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"emotion-theming": "^10.0.19",
"lodash.merge": "^4.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"start": "styleguidist server",
"build": "styleguidist build",
"dist": "rollup -c",
"declaration": "tsc -p declaration.tsconfig.json",
"prepublishOnly": "yarn && yarn test && yarn dist",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cz": "git-cz",
"lint": "eslint --ext js,ts,tsx src",
"pre-commmit": "yarn test && yarn lint && pretty-quick --staged"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commmit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}