-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "colorways",
"version": "0.0.4",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --progress --color --host=0.0.0.0",
"lint": "prettier --write src/*.ts src/**/*.ts index.html",
"compile": "webpack",
"prepare": "husky install"
},
"dependencies": {
"animejs": "^3.2.1",
"color-convert": "^2.0.1",
"lit": "^2.0.0-rc.2"
},
"devDependencies": {
"@types/animejs": "^3.1.3",
"@types/color-convert": "^2.0.0",
"electron": "^11.0.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^2.1.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.2",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.1.14"
},
"lint-staged": {
"src/**/*.ts": "prettier --write",
"index.html": "prettier --write"
}
}