-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"@list-positions/formatting": "^1.0.0",
"list-positions": "^1.0.0",
"maybe-random-string": "^1.0.0",
"prosemirror-commands": "^1.5.2",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.19.4",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.8.0",
"prosemirror-view": "^1.32.7",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^15.6.1",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.2",
"@types/ws": "^8.5.10",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^2.7.1",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.2.5",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"start": "ts-node -P tsconfig.server.json src/server/server.ts",
"dev": "cross-env TS_NODE_PROJECT='tsconfig.webpack-config.json' webpack",
"build": "cross-env TS_NODE_PROJECT='tsconfig.webpack-config.json' webpack --mode production --devtool source-map",
"test": "npm-run-all test:*",
"test:server-tsc": "tsc -p tsconfig.server.json",
"test:format": "prettier --check .",
"fix": "npm-run-all fix:*",
"fix:format": "prettier --write .",
"clean": "rimraf dist"
}
}