forked from MulberryHouseSoftware/remarkable-charts-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "remarkable-charts-website",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/MulberryHouseSoftware/remarkable-charts-website.git"
},
"license": "MIT",
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"deploy": "cross-env DEBUG=* netlify deploy --prod"
},
"dependencies": {
"@docusaurus/core": "2.0.0-alpha.61",
"@docusaurus/plugin-ideal-image": "2.0.0-alpha.61",
"@docusaurus/preset-classic": "2.0.0-alpha.61",
"@fluentui/react": "^7.154.0",
"@mulberryhousesoftware/remarkable-charts-ui": "^0.35.3",
"classnames": "2.2.6",
"moment": "^2.27.0",
"moment-msdate": "^2.0.4",
"moment-timezone": "^0.5.31",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-is": "17.0.1",
"styled-components": "^5.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.2",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}