-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "mandm",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "npm run buildDemo",
"buildServerAsWebService": "browserify browser.js -o express-service.js --global-transform=aliasify",
"buildServer": "npm run buildServerAsWebService",
"buildDemo": "npm run buildServer",
"demo": "npm run buildDemo && serve ./",
"serve": "npm run build && serve ./"
},
"main": "./index.js",
"browser": "./browser.js",
"browserify": {
"transform": [
"@wardpeet/brfs"
]
},
"aliasify": {
"aliases": {
"fs": "./fs",
"http": "stream-http"
}
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"async-mutex": "^0.3.1",
"cookie-parser": "~1.4.4",
"datalist-polyfill": "^1.24.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-session": "^1.17.3",
"http-status-codes": "^2.1.3",
"i18next": "^19.8.3",
"i18next-fs-backend": "^1.0.7",
"langmap": "0.0.16",
"mkdirp": "^1.0.4",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"promise": "^8.1.0",
"promise-deferred": "^2.0.3",
"rimraf": "^3.0.2",
"tiptap": "^1.30.0",
"tiptap-extensions": "^1.33.1",
"vue": "^2.6.12",
"vue-accessible-color-picker": "^1.1.2"
},
"devDependencies": {
"@wardpeet/brfs": "^2.1.0",
"aliasify": "^2.1.0",
"browser-process-hrtime": "^1.0.0",
"browser-stdout": "^1.3.1",
"browserify": "^17.0.0",
"charset": "^1.0.1",
"express-service": "github:jjak0b/express-service#v2.1.1",
"http-proxy": "^1.18.1",
"https-localhost": "^4.6.4",
"level-filesystem": "github:aredridel/level-filesystem#update-levelup",
"level-js": "^5.0.2",
"levelup": "^4.4.0",
"stream-http": "^3.2.0",
"url-parse": "^1.5.1"
}
}