forked from hajke-gu/text-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 814 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
{
"name": "mod-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm install && npm run server",
"server": "node development-server.js src"
},
"keywords": [],
"author": "Emanuel Dellsén, Hartmut Fischer, Jonatan Vaara, Alexander Strand & Karl Västgård",
"license": "ISC",
"devDependencies": {
"clean-css": "^4.2.3",
"husky": "^4.3.0",
"live-server": "^1.2.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2"
},
"dependencies": {
"eslint": "^7.10.0",
"html-minifier": "^4.0.0",
"minify": "^6.0.0",
"minimist": "^1.2.5",
"puppeteer": "^5.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}