-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
43 lines (43 loc) · 1.32 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
{
"private": true,
"workspaces": [
"packages/*/"
],
"scripts": {
"build": "npm -w @webtoon/psd run build",
"clear": "rimraf --glob 'packages/*/dist/' dist-web/",
"deploy": "npm -w @webtoon/psd-example-browser -w @webtoon/psd-benchmark run build && gh-pages -d dist-web/",
"fix": "eslint --fix . && prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "husky install",
"release": "npm -w @webtoon/psd run release",
"start:benchmark": "npm -w @webtoon/psd-benchmark start --watch",
"start:browser": "npm -w @webtoon/psd-example-browser start --watch",
"start:node": "npm -w @webtoon/psd-example-node start --watch",
"test": "npm --workspaces --if-present test"
},
"browserslist": [
"chrome >= 57",
"firefox >= 52",
"safari >= 11",
"edge >= 79",
"node >= 12"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"rimraf": "^5.0.1"
},
"engines": {
"npm": ">= 7"
}
}