-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.47 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
{
"name": "true-cms",
"version": "0.0.0-development",
"author": "Mathias Kandelborg",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/MathiasKandelborg/true-cms.git"
},
"scripts": {
"build": "sanity build",
"dev": "sanity start",
"test": "sanity check",
"semantic-release": "semantic-release"
},
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/prompt"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@sanity/base": "^1.150.2",
"@sanity/cli": "^1.150.1",
"@sanity/components": "^1.150.2",
"@sanity/core": "^1.150.1",
"@sanity/dashboard": "^1.150.1",
"@sanity/default-layout": "^1.150.2",
"@sanity/default-login": "^1.150.1",
"@sanity/desk-tool": "^1.150.2",
"@sanity/production-preview": "^1.150.1",
"@sanity/vision": "^1.150.1",
"bcp-47": "1.0.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.10.0",
"sanity-plugin-dashboard-widget-document-list": "^0.0.10"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@commitlint/prompt": "9.1.1",
"@next/eslint-plugin-next": "^9.5.1",
"@types/bcp-47": "^1.0.0",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.9.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^29.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"typescript": "^3.9.7"
}
}