-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "sn-vditor",
"version": "0.0.122",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"setup": "yarn install --frozen-lockfile",
"lint": "eslint --ext .js,.tsx ./",
"prettier": "prettier --check ./",
"ts:check": "tsc --noEmit",
"ci": "npm-run-all prettier lint ts:check",
"dev": "react-app-rewired start",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"build:cra": "react-app-rewired build",
"build:zip": "cd dist && rm -f pkg.zip && zip -r pkg.zip hosted/*",
"build:install-dev": "node scripts/gen-install.js dev",
"build:install-local": "node scripts/gen-install.js local",
"build:install-prod": "node scripts/gen-install.js",
"build": "npm-run-all build:cra build:install-prod build:zip"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"filesafe-js": "^1.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"sn-editor-kit": "^1.0.9",
"vditor": "^3.8.18"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.15",
"react-app-rewired": "^2.1.8",
"sass": "^1.45.1",
"typescript": "^4.5.4"
}
}