-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 KB
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": "webgme-diffsync",
"scripts": {
"start": "node app.js",
"postinstall": "npm run build",
"lint": "node ./node_modules/.bin/eslint ./",
"build": "npm run build:lib && npm run build:svelte",
"build:lib": "vite build -c vite.ts-config.js",
"build:svelte": "vite build -c vite.svelte-config.js",
"watch:lib": "tsc --watch",
"test": "node ./node_modules/mocha/bin/mocha --require source-map-support/register --recursive test"
},
"version": "1.0.0",
"peerDependencies": {
"webgme": "^2.23.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.7",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.6",
"changeset": "github:deepforge-dev/changeset",
"eslint": "^8.23.0",
"mocha": "^5.2.0",
"source-map-support": "^0.5.21",
"svelte": "^3.50.1",
"svelte-jsoneditor": "^0.7.4",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.8.2",
"vite": "^3.1.3",
"vite-plugin-dts": "^1.6.4",
"webgme": "^2.23.0",
"webgme-json-importer": "github:deepforge-dev/webgme-json-importer"
}
}