-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "purity",
"version": "0.12.0",
"description": "We need package.json since npx jest doesn't work correctly",
"main": "src/purity.ts",
"type": "module",
"scripts": {
"json-server": "json-server --watch public/examples/json-server/db.json",
"test": "vitest src/",
"coverage": "vitest run src/ --coverage",
"e2e": "bash bin/e2e.sh",
"cypress": "npx [email protected] open --config baseUrl=http://localhost:8081",
"prettier:check": "npx prettier --check \"**/*.{ts,html,yaml,css,md,json}\"",
"prettier": "npx prettier --write \"**/*.{ts,html,yaml,css,md,json}\"",
"lint": "eslint src/",
"build": "bash bin/build.sh",
"start": "bash bin/start.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tatomyr/purity.git"
},
"author": "Andrew Tatomyr",
"license": "MIT",
"bugs": {
"url": "https://github.com/tatomyr/purity/issues"
},
"homepage": "https://github.com/tatomyr/purity#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"cypress": "^10.9.0",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"happy-dom": "^9.10.9",
"json-server": "^0.17.1",
"minify": "^6.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
}
}