-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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": "svg-matrix-visual-guide",
"version": "1.0.0",
"description": "Visual Guide To SVG Matrix Function",
"main": "index.js",
"author": "Jakub Antolak <poprostuantolak@gmail.com>",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@mdx-js/loader": "^1.5.5",
"@next/mdx": "^9.2.1",
"@theme-ui/presets": "^0.3.0",
"d3-scale": "^3.2.1",
"next": "^9.2.1",
"next-fonts": "^1.0.3",
"polished": "^3.4.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-spring": "^8.0.27",
"theme-ui": "^0.3.1"
},
"scripts": {
"dev": "next -p 8080",
"build": "next build",
"start": "next start",
"export": "next export",
"commit": "git-cz",
"deploy": "yarn build && yarn export",
"lint": "eslint -c .eslintrc.js pages/*.tsx components/**/*.tsx",
"lint:fix": "eslint -c .eslintrc.js pages/*.tsx components/**/*.tsx --fix"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@types/d3-scale": "^2.1.1",
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.1",
"typescript": "^3.7.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}