-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.85 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.85 KB
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
{
"name": "@burna/osjs-office-collabora",
"version": "1.1.10",
"description": "Osjs office application working with collabora service",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint *.js",
"build": "webpack",
"watch": "webpack --watch",
"stylelint": "stylelint index.scss src/**/*.scss",
"prepublishOnly": "npm run eslint && npm run stylelint && rm ./dist/* && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BurnaSmartLab/osjs-office-collabora"
},
"keywords": [
"os.js",
"office",
"document",
"presentation",
"spreadsheet",
"collabora",
"collabora_online_development_edition(CODE)"
],
"files": [
"index.js",
"crypto.js",
"locales.js",
"metadata.json",
"middleware.js",
"package.json",
"private.key",
"README.md",
"server.js",
"wopi.js",
"webpack.config.js",
"src/assets/appicon.png",
"src/assets/files.png",
"src/components/browseFile/index.js",
"src/components/browseFile/index.scss",
"src/components/createFile/index.js",
"src/components/createFile/index.scss",
"src/components/loaderForm/index.js",
"src/components/main/index.js",
"src/components/main/index.scss",
"src/hooks/core.js",
"src/hooks/customeDialog.js",
"src/styles/_variables.scss",
"src/index.js",
"src/fonts/vaziri/*",
"dist/"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"http": "0.0.1-security",
"https": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"stream": "0.0.2",
"url-loader": "^4.1.1",
"xmldom": "^0.6.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@osjs/dev-meta": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-plugin-react": "^7.24.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
},
"author": "Mahsa Shadi <mahsa.shadi@mail.um.ac.ir>",
"license": "BSD-2-Clause",
"homepage": "https://github.com/BurnaSmartLab/osjs-office-collabora/blob/master/README.md",
"osjs": {
"type": "package"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"react/prop-types": "off"
},
"parser": "babel-eslint",
"extends": [
"@osjs/eslint-config",
"plugin:react/recommended"
]
},
"stylelint": {
"extends": "@osjs/stylelint-config"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}