-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
56 lines (56 loc) · 1.96 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
{
"name": "peritext",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "parcel ./index.html",
"start-essay-demo": "parcel ./essay-demo.html",
"build": "parcel build ./index.html --public-url=./",
"typecheck": "tsc --noEmit --watch",
"prettier": "prettier --write ./index.html *.json ./src/**/* ./test/**/*",
"check-prettier": "prettier --check ./index.html *.json ./src/**/* ./test/**/*",
"test": "ts-mocha ./test/micromerge.ts -p ./test/tsconfig.json",
"fuzz": "ts-mocha ./test/fuzz.ts -p ./test/tsconfig.json",
"lint": "eslint ./src/**/* ./test/**/*"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/color-hash": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"parcel": "^2.0.1",
"prettier": "^2.2.1",
"typescript": "^4.3.2"
},
"dependencies": {
"@types/lodash": "^4.14.170",
"@types/prosemirror-commands": "1.0.4",
"@types/prosemirror-keymap": "1.0.4",
"@types/prosemirror-model": "1.13.0",
"@types/prosemirror-schema-list": "1.0.3",
"@types/prosemirror-state": "1.2.6",
"@types/prosemirror-view": "1.17.1",
"@types/shuffle-seed": "^1.1.0",
"@types/uuid": "^8.3.0",
"color-hash": "^2.0.1",
"lodash": "^4.17.21",
"mocha": "^8.4.0",
"prosemirror-commands": "1.1.8",
"prosemirror-keymap": "1.1.4",
"prosemirror-model": "1.14.1",
"prosemirror-schema-list": "1.1.4",
"prosemirror-state": "1.3.4",
"prosemirror-transform": "^1.3.3",
"prosemirror-view": "1.18.7",
"shuffle-seed": "^1.1.6",
"ts-mocha": "^8.0.0",
"uuid": "^3.4.0"
},
"browserslist": [
"last 1 Chrome version"
]
}