-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@notebox/nb-editor",
"version": "5.4.0",
"author": "KANG Myung-hun",
"description": "block based web-editor compatible with nb-crdt",
"repository": {
"type": "git",
"url": "git+https://github.com/notebox/nb-editor.git"
},
"keywords": [
"crdt",
"editor",
"react"
],
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "npm run dev",
"dev": "webpack serve --open --config config/webpack.dev.js",
"build-apple": "webpack --config config/webpack.apple.js",
"build-iframe": "webpack --config config/webpack.iframe.js",
"build": "npm run build-iframe && tsc",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "TZ=UTC jest",
"test-cover": "TZ=UTC jest --coverage",
"test-watch": "TZ=UTC jest --watchAll=true",
"test-watch-cover": "TZ=UTC jest --coverage --watchAll=true",
"prepare": "npm run build",
"pretest": "tsc",
"posttest": "npm run lint",
"open-vscode-chrome": "open -n -a \"Google Chrome\" --args --incognito --remote-debugging-port=53000 --user-data-dir=$(echo $(pwd)/.vscode/chrome-debugger)"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint-fix"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@braintree/sanitize-url": "^6.0.4",
"@types/esrever": "^0.2.3",
"@types/is-hotkey": "^0.1.9",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@types/mermaid": "^9.1.0",
"@types/node": "^20.9.0",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"axios": "^1.6.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"dayjs": "^1.11.10",
"decimal.js": "^10.4.3",
"eslint-plugin-unused-imports": "^3.0.0",
"esrever": "^0.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^4.3.8",
"is-hotkey": "^0.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.2",
"lodash": "^4.17.21",
"mermaid": "^9.1.7",
"mini-css-extract-plugin": "^2.7.6",
"prismjs": "^1.29.0",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.7",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"uuid": "^9.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@notebox/nb-crdt": "^4.0.1"
}
}