forked from os-js/OS.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "@osjs/osjs",
"version": "3.0.6",
"description": "OS.js v3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/client/**/*.js src/server/**/*.js",
"stylelint": "stylelint src/client/*.scss",
"serve": "node src/server/index.js",
"build:manifest": "osjs-cli package:discover",
"package:discover": "osjs-cli package:discover",
"package:create": "osjs-cli package:create",
"make:auth": "osjs-cli make:auth",
"make:settings": "osjs-cli make:settings",
"make:vfs": "osjs-cli make:vfs",
"make:application": "osjs-cli make:application",
"make:iframe-application": "osjs-cli make:iframe-application",
"make:provider": "osjs-cli make:provider",
"build": "webpack",
"watch": "webpack --watch"
},
"keywords": [
"osjs"
],
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"hyperapp": "^1.2.10",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.3.1",
"source-map-loader": "^0.2.4",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.10.0",
"typeface-roboto": "0.0.75",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"@osjs/calculator-application": "^1.2.4",
"@osjs/cli": "^3.0.18",
"@osjs/client": "^3.1.5",
"@osjs/dialogs": "^3.0.15",
"@osjs/draw-application": "^1.2.3",
"@osjs/filemanager-application": "^1.3.4",
"@osjs/freedesktop-sounds": "^3.0.1",
"@osjs/gnome-icons": "^4.0.2",
"@osjs/gui": "^4.0.25",
"@osjs/htmlviewer-application": "^1.2.3",
"@osjs/musicplayer-application": "^1.2.5",
"@osjs/panels": "^3.0.19",
"@osjs/preview-application": "^1.1.13",
"@osjs/server": "^3.0.44",
"@osjs/settings-application": "^1.1.1",
"@osjs/standard-theme": "^4.0.6",
"@osjs/textpad-application": "^1.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osjs/OS.js.git"
},
"bugs": {
"url": "https://github.com/osjs/OS.js/issues"
},
"homepage": "https://www.os-js.org",
"engines": {
"node": ">=8.0.0"
}
}