forked from interviewstreet/firepad-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.48 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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@joshtechnologygroup/firepad",
"description": "Collaborative text editing powered by Firebase",
"version": "0.1.1",
"author": {
"name": "Josh Technology Group",
"url": "https://github.com/joshtechnologygroup"
},
"maintainers": [
"Michael Lehenbauer <michael@firebase.com>",
"Brijesh Bittu <brijesh@hackerrank.com>",
"Nishchay Kaushik <nishchay@hackerrank.com>",
"Mohanasundar <mohana.sundar@hackerrank.com>",
"Mayankesh Mishra <mayankesh.mishra@joshtechnologygroup.com>"
],
"homepage": "http://www.firepad.io/",
"repository": {
"type": "git",
"url": "git@github.com:joshtechnologygroup/firepad-x.git"
},
"bugs": {
"url": "https://github.com/joshtechnologygroup/firepad-x/issues"
},
"license": "MIT",
"keywords": [
"text",
"word",
"editor",
"monaco",
"firebase",
"realtime",
"collaborative"
],
"main": "es/index.js",
"module": "es/index.js",
"types": "types",
"files": [
"dist/**",
"es/**",
"types/**",
"LICENSE",
"package.json",
"yarn.lock"
],
"engines": {
"node": ">= 10.17.0"
},
"peerDependencies": {
"firebase": "10.7.0",
"monaco-editor": "0.18.1",
"ace-builds": "^1.4.2"
},
"dependencies": {
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.13.16",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.13.15",
"@babel/preset-typescript": "7.13.0",
"@types/jest": "26.0.23",
"@types/uuid": "8.3.0",
"ace-builds": "^1.4.2",
"babel-loader": "8.2.2",
"check-yarn-lock": "0.2.1",
"child-process-promise": "2.2.1",
"core-js": "3.11.0",
"css-loader": "5.2.4",
"firebase": "10.7.0",
"git-format-staged": "2.1.1",
"husky": "^7.0.0",
"jest": "27.0.3",
"monaco-editor": "0.18.1",
"monaco-editor-webpack-plugin": "1.7.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"source-map-loader": "2.0.1",
"style-loader": "2.0.0",
"ts-jest": "27.0.3",
"typescript": "4.2.4",
"webpack": "5.34.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2",
"npm-run-all": "^4.1.5"
},
"scripts": {
"prepare": "run-s build:esm",
"start": "webpack serve --hot --progress --mode development --port 9000 --host 0.0.0.0 --config configs/webpack.dev.config.js",
"start:prod": "webpack serve --hot --progress --mode production --port 9000 --host 0.0.0.0 --config configs/webpack.dev.config.js",
"clean": "rimraf dist es lib types",
"prebuild": "yarn clean",
"build": "yarn build:esm && yarn build:cjs && yarn build:dist",
"build:dist": "NODE_ENV=production webpack --config configs/webpack.config.js",
"build:esm": "tsc -p configs/tsconfig.module.json",
"build:cjs": "tsc -p configs/tsconfig.json",
"lint": "yarn lint:lockfile && yarn lint:prettier",
"lint:prettier": "prettier --write configs examples src test",
"lint:lockfile": "check-yarn-lock",
"release": "./scripts/tag-and-version",
"test": "TEST_ENV=true jest --colors",
"test:ci": "yarn test --ci --silent",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f \"yarn lint\" ."
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**",
"!**/src/firepad-classic.ts",
"!**/src/index.ts",
"!**/src/utils.ts"
],
"preset": "ts-jest",
"testEnvironment": "node"
}
}