-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "canvas",
"version": "0.0.1",
"description": "micro frontend",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"check": "run-p fmt-check lint",
"fix": "run-s \"lint -- --fix\"",
"fmt": "run-s \"fmt-check -- --write\"",
"fmt-check": "prettier --check **/*.{md,json,ts}",
"lint": "eslint **/*.ts",
"type": "tsc --project tsconfig.json --skipLibCheck --noEmit"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^1.4.11",
"rollup-plugin-typescript2": "^0.27.1",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run fmt && npm run fix;"
}
},
"dependencies": {
"css-layout": "^1.1.1"
}
}