-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "yassh.github.io",
"version": "0.0.0",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.1",
"@types/lz-string": "^1.3.34",
"@types/marked": "^4.0.3",
"@types/throttle-debounce": "^5.0.0",
"jest": "^28.1.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
},
"private": true,
"scripts": {
"build": "npm run clean && parcel build 'src/**/*.html'",
"checkall": "run-p lint test",
"clean": "rimraf ./dist",
"dev": "npm run clean && parcel 'src/**/*.html'",
"fix": "run-p fix:*",
"fix:html": "prettier 'src/**/*.html' --write",
"fix:js": "prettier 'src/**/*.{js,ts}' --write",
"lint": "run-p lint:*",
"lint:html": "prettier 'src/**/*.html' --check",
"lint:js": "run-p lint:js:*",
"lint:js:prettier": "prettier 'src/**/*.{js,ts}' --check",
"lint:js:tsc": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"lz-string": "^1.4.4",
"marked": "^4.0.18",
"throttle-debounce": "^5.0.0"
}
}