-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "vincent-van-git",
"productName": "vincent-van-git",
"version": "0.0.1",
"description": "Use your GitHub commit history as a canvas!",
"license": "MIT",
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate:sw": " workbox generateSW workbox-config.js",
"dev:web": "parcel src/web/index.pug --out-dir public",
"build:web": "parcel build src/web/index.pug --out-dir public --no-source-maps",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"lint-staged": {
"src/**/*.{js,json,css}": [
"eslint",
"prettier --write",
"git add"
],
"*.js": "eslint --cache --fix"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"gsap": "^3.4.0",
"jszip": "^3.5.0",
"luxon": "^1.25.0",
"node-fetch": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.9.6",
"tone": "^14.7.58"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@storybook/addon-actions": "^6.0.27",
"@storybook/addon-essentials": "^6.0.27",
"@storybook/addon-links": "^6.0.27",
"@storybook/react": "^6.0.27",
"@svgr/parcel-plugin-svgr": "^5.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"pug": "^3.0.0",
"react-is": "^17.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^4.2.0",
"workbox-cli": "^5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}