This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "slate-yjs-example",
"homepage": "https://bitphinix.github.io/slate-yjs-example",
"version": "0.2.0",
"scripts": {
"start:cra": "cross-env REACT_APP_BUILD_TARGET=src/website && react-scripts start",
"start:server": "cross-env HOST=localhost PORT=1234 && npx y-websocket-server",
"prebuild": "shx cp -f ./tsconfig.production.json ./tsconfig.json",
"build": "cross-env NODE_ENV=production && react-scripts build",
"dev": "concurrently \"yarn start:cra\" \"yarn serve\"",
"serve": "nodemon --watch ../backend/lib --inspect server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@types/faker": "^5.1.5",
"@types/is-url": "^1.2.28",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/randomcolor": "^0.5.5",
"@types/react-dom": "^17.0.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"faker": "^5.1.0",
"is-url": "^1.2.4",
"lib0": "^0.2.35",
"lodash": "^4.17.20",
"nodemon": "^2.0.7",
"randomcolor": "^0.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-react": "^0.59.0",
"slate-yjs": "^2.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"y-protocols": "^1.0.2",
"y-websocket": "^1.3.9",
"yjs": "^13.5.4"
},
"devDependencies": {
"@types/cors": "2.8.8",
"@types/ws": "7.2.7",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"shx": "^0.3.3"
}
}