-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 815 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 815 Bytes
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
{
"name": "lordofpasswords",
"version": "1.0.0-rc.0",
"description": "Password Generator",
"main": "dist/index.html",
"scripts": {
"start": "npx static-server -p 8080",
"lint": "eslint .",
"e2e": "bash bin/test.sh",
"cypress": "cypress open --config baseUrl=http://localhost:8080",
"build": "node bin/build.js",
"prettier:check": "npx prettier --check \"**/*.{js,html,yaml,css,md}\"",
"prettier": "npx prettier --write \"**/*.{js,html,yaml,css,md}\"",
"fresh": "bash bin/fresh.sh",
"upgrade": "node bin/upgrade.js",
"prepare": "husky"
},
"author": "tatomyr",
"license": "ISC",
"devDependencies": {
"chalk": "^5.0.1",
"cypress": "^9.5.4",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"static-server": "^2.2.1"
}
}