-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "dom-align",
"version": "1.12.4",
"description": "Align DOM Node Flexibly ",
"keywords": [
"dom",
"align"
],
"homepage": "http://github.com/yiminghe/dom-align",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/dom-align.git"
},
"bugs": {
"url": "http://github.com/yiminghe/dom-align/issues"
},
"license": "MIT",
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint -c ./.eslintrc-src.js src && tsc --noEmit && next lint",
"prettier": "prettier --write \"{src,app,cypress}/**/*.{js,jsx,ts,tsx}\"",
"pub": "npm run build && cd pkg && npm publish",
"build": "node scripts/build",
"gh-pages": "next build && touch dom-align/.nojekyll && gh-pages -d dom-align -t",
"start": "next dev",
"test": "rm -rf .nyc_output && cypress run --component",
"test:ci": "cypress run --component --record --key $CYPRESS_RECORD_KEY"
},
"nyc": {
"excludeAfterRemap": true,
"exclude": [
"**/node_modules/**/*",
"**/.pnpm/**/*",
"**/cypress/**/*"
],
"reporter": [
"text",
"lcov"
]
},
"devDependencies": {
"swc-plugin-coverage-instrument": "0.0.21",
"@cypress/code-coverage": "3.x",
"@swc/cli": "0.1.x",
"@swc/core": "1.3.x",
"@types/react": "18.2.21",
"cypress": "13.x",
"eslint": "^8.48.0",
"eslint-config-next": "13.4.19",
"gh-pages": "6.x",
"github-markdown-css": "^5.2.0",
"lint-staged": "14.x",
"markdown-it": "^13.0.1",
"next": "14.x",
"normalize.css": "^8.0.1",
"pre-commit": "1.x",
"prettier": "3.x",
"prismjs": "^1.29.0",
"react": "18.x",
"react-dom": "18.x",
"typescript": "5.x"
},
"lint-staged": {
"*.{tsx,js,jsx,ts}": [
"prettier --write"
]
},
"pre-commit": [
"lint-staged"
],
"packageManager": "[email protected]"
}