-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 982 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "HandwritingGeneration",
"version": "1.0.0-rc.1",
"main": "js/app.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "cypress run",
"eslint": "eslint --fix \"js/**/**.mjs\"",
"prettier": "prettier --write \"./index.html\" \"js/**/**.mjs\" \"css/**.css\"",
"format": "npm run prettier",
"cy": "cypress open",
"dev": "serve ."
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"cypress": "^4.4.1",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"serve": "^11.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && eslint . --fix && npm run eslint"
}
},
"dependencies": {
"http-server": "^14.1.0"
}
}