-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
{
"name": "collaborative-rich-text-editor",
"description": "Collaborative Rich Text Editor",
"version": "0.0.1",
"author": {
"name": "Alex Arus",
"email": "mr.alex.arus@gmail.com"
},
"homepage": "https://gitlab.com/alex.arus/collaborative-rich-text-editor",
"repository": "https://gitlab.com/alex.arus/collaborative-rich-text-editor.git",
"license": "GPL-3.0",
"main": "index.ts",
"scripts": {
"clean": "rm -r build",
"dev:server": "tsc --build --watch ./config/development.tsconfig.json",
"dev:ui": "webpack --config ./config/development.webpack.config.js --watch",
"dev:start": "nodemon 'build/dev/server/app.js' --watch 'build/dev/server'",
"dev": "concurrently -p '[{time} {name}]' -t 'HH:mm:ss' -c 'blue.bold,yellow.bold,green.bold' 'npm:dev:server' 'npm:dev:ui' 'npm:dev:start'",
"prod:server": "tsc --build ./config/production.tsconfig.json",
"prod:ui": "webpack --config ./config/production.webpack.config.js",
"prod": "npm run clean && npm run prod:server && npm run prod:ui",
"lint": "tslint -c tslint.json -t stylish 'src/**/*.ts' && eslint -c .eslintrc.json 'src/**/*.js'",
"lint:fix": "tslint -c tslint.json -t stylish 'src/**/*.ts' --fix && eslint -c .eslintrc.json 'src/**/*.js' --fix",
"test": "jest"
},
"dependencies": {
"@teamwork/websocket-json-stream": "^1.1.1",
"axios": "^0.18.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.13",
"quill": "^1.3.6",
"quill-cursors": "^1.0.3",
"reconnectingwebsocket": "^1.0.0",
"rich-text": "^3.1.0",
"sharedb": "^1.0.0-beta.17",
"sharedb-mongo": "^1.0.0-beta.8",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"ws": "^6.1.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@types/axios": "^0.14.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/faker": "^4.1.5",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.19",
"@types/sharedb": "^1.0.2",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.24",
"@types/ws": "^6.0.1",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.1",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"faker": "^4.1.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"jest": "^24.0.0",
"nodemon": "^1.18.9",
"style-loader": "^0.23.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
}
}