-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.25 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
{
"name": "lastyearimages",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "parcel index.html --out-dir oekaki",
"build": "parcel build index.html --out-dir oekaki",
"watch": "parcel watch index.html --out-dir oekaki",
"docker": "docker-compose up -d",
"lint": "eslint src/**"
},
"devDependencies": {
"@types/js-cookie": "^2.2.0",
"@types/luxon": "^1.4.1",
"@types/react": "^16.4.18",
"@types/react-color": "^2.13.6",
"@types/react-dropzone": "^4.2.2",
"@types/recompose": "^0.27.0",
"@types/webfontloader": "^1.6.29",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^1.1.3",
"jest": "^22.0.3",
"lint-staged": "^8.0.4",
"node-sass": "^4.13.1",
"parcel-bundler": "^1.3.1",
"prettier": "^1.15.1",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^20.1.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"@hibikine/utils": "^0.1.1",
"@material-ui/core": "^3.5.1",
"babel-polyfill": "^6.26.0",
"big-integer": "^1.6.36",
"dexie": "^2.0.4",
"emotion": "^9.1.3",
"facepaint": "^1.2.1",
"immer": "^9.0.6",
"js-cookie": "^2.2.0",
"konva": "^2.5.0",
"lazyload": "^2.0.0-beta.2",
"luxon": "^1.6.2",
"moment": "^2.20.1",
"oauth": "^0.9.15",
"popper.js": "^1.12.3",
"react": "^16.3.0",
"react-color": "^2.14.1",
"react-dom": "^16.3.0",
"react-dropzone": "^7.0.1",
"react-emotion": "^9.2.12",
"react-konva": "^16.6.1-1",
"recompose": "^0.30.0",
"spectrum-colorpicker": "^1.8.0",
"styled-components": ">=3 <5",
"styled-reboot": "^3.0.1",
"tinycolor2": "^1.4.1",
"twitter-node-client": "^0.0.6",
"webfontloader": "^1.6.28"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,json,scss,css}": [
"prettier --write",
"git add"
]
}
}