-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "Moccha-Editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --color --progress",
"build:local": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --color --progress",
"lint": "./node_modules/.bin/eslint ./src/**/*.{ts,tsx}",
"fmt": "./node_modules/.bin/prettier src/**/* --config ./.prettierrc --write",
"test": "./node_modules/.bin/env-cmd -e test ts-mocha src/**/*.spec.ts",
"tidy": "yarn run lint:ts && yarn run fmt"
},
"keywords": [],
"author": {
"name": "Rayhan Hamada",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/RayhanHamada/moccha_editor"
},
"license": "MIT",
"dependencies": {
"@convergencelabs/monaco-collab-ext": "^0.3.0",
"@emotion/core": "^10.0.28",
"axios": "^0.19.2",
"connected-react-router": "^6.7.0",
"dep-to-dep": "https://github.com/RayhanHamada/dep-to-dep.git",
"dotenv": "^8.2.0",
"dotenv-cmd-webpack": "^1.0.0",
"dotenv-file-maker": "https://github.com/RayhanHamada/dotenv-file-maker.git",
"history": "^4.10.1",
"monaco-editor": "^0.20.0",
"randomcolor": "^0.5.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-monaco-editor": "^0.34.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-spinners": "^0.8.0",
"react-text-loop": "^2.3.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-observable": "^1.2.0",
"rxjs": "^6.5.4",
"socket.io-client": "^2.3.0",
"styled-components": "^5.0.1",
"tailwindcss": "^1.2.0",
"typeit": "^6.5.1",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/chai": "^4.2.9",
"@types/dotenv": "^8.2.0",
"@types/dotenv-webpack": "^1.7.0",
"@types/history": "^4.7.5",
"@types/html-webpack-plugin": "^3.2.2",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.29",
"@types/randomcolor": "^0.5.5",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router": "^5.1.4",
"@types/redux": "^3.6.0",
"@types/socket.io-client": "^1.4.32",
"@types/styled-components": "^4.4.3",
"@types/terser-webpack-plugin": "^2.2.0",
"@types/webpack": "^4.41.7",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@types/webpack-dev-server": "^3.10.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^7.1.2",
"monaco-editor-webpack-plugin": "^1.9.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"serve": "^11.3.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"ts-mocha": "^6.0.0",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}