-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "pastemate",
"version": "1.0.0",
"description": "Pasting plain text web app with syntax highlighting, similar to Pastebin.com",
"main": "index.js",
"scripts": {
"start": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kstypik/PasteMate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kstypik/PasteMate/issues"
},
"homepage": "https://github.com/kstypik/PasteMate#readme",
"dependencies": {
"@codemirror/lang-cpp": "^6.0.1",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-html": "^6.0.0",
"@codemirror/lang-java": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/lang-json": "^6.0.0",
"@codemirror/lang-markdown": "^6.0.0",
"@codemirror/lang-php": "^6.0.0",
"@codemirror/lang-python": "^6.0.0",
"@codemirror/lang-rust": "^6.0.0",
"@codemirror/lang-xml": "^6.0.0",
"@codemirror/state": "^6.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"codemirror": "^6.0.0",
"rollup": "^2.75.6"
}
}