-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "codemirror-app-spreadsheet",
"version": "1.0.0",
"description": "",
"main": "./src/editor.js",
"scripts": {
"start": "rollup -c \"rollup.config.js\" -w",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier-format": "prettier --config .prettierrc --write \"src/**/*.ts\"",
"prettier-check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint --ext .ts --ignore-path .eslintignore ."
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@codemirror/autocomplete": "^6.4.2",
"@codemirror/commands": "^6.2.1",
"@codemirror/lang-javascript": "^6.1.4",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"codemirror": "^6.0.1",
"codemirror-lang-spreadsheet": "^1.0.3",
"rollup": "^3.18.0"
},
"devDependencies": {
"@codemirror/language": "^6.6.0",
"@lezer/highlight": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^4.9.5"
}
}