-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 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
83
{
"name": "tome",
"version": "0.1.0",
"description": "A simple wiki.",
"main": "server.js",
"scripts": {
"dist-clean": "rimraf dist/* .cache",
"clean": "rimraf dist/*",
"build": "npm run clean && parcel build client/index.html",
"watch": "npm run clean && parcel watch client/index.html",
"lint": "eslint --fix --ext .js,.vue server.js config.js server/ client/ tests/",
"test": "LOG_LEVEL=ERROR UNIT_TESTS=TRUE nyc --reporter=text-summary mocha -r tests/setup.js tests/**/*.spec.js --recursive --exit --delay",
"start": "DEBUG=true node server.js"
},
"author": "Christopher S. Case <chris.case@g33xnexus.com>",
"license": "MIT",
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"dependencies": {
"bluebird": "^3.4.3",
"body-parser": "^1.15.2",
"connect-session-knex": "^1.4.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.1",
"knex": "^0.20.1",
"lodash": "^4.17.5",
"moment": "^2.22.2",
"passport": "^0.4.0",
"passport-google-web": "^1.0.0",
"sqlite3": "^4.0.2",
"trivial-logging": "^2.0.0-rc.3",
"trivialperms": "^1.0.0-rc.4"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/pro-regular-svg-icons": "^5.11.2",
"@fortawesome/pro-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.8",
"@vue/component-compiler-utils": "^3.0.0",
"autoprefixer": "^9.1.3",
"axios": "^0.19.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"codemirror": "^5.40.0",
"commander": "^4.0.0",
"cpr": "^3.0.1",
"diff": "^4.0.1",
"diff-match-patch": "^1.0.4",
"eslint": "^6.6.0",
"eslint-plugin-vue": "^5.2.3",
"highlightjs": "^9.10.0",
"jquery": "^3.5.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.0.2",
"markdown-it-table-of-contents": "^0.4.3",
"markdown-it-task-lists": "^2.1.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"parcel": "^1.9.7",
"pino-pretty": "^3.2.2",
"popper.js": "^1.14.4",
"precss": "^4.0.0",
"rimraf": "^3.0.0",
"rxjs": "^6.2.2",
"sass": "^1.23.3",
"v-runtime-template": "1.5.2",
"vue": "^2.5.17",
"vue-cm": "^1.1.0",
"vue-codemirror": "^4.0.6",
"vue-hot-reload-api": "^2.3.0",
"vue-meta": "^2.3.1",
"vue-router": "^3.0.1",
"vue-rx": "6.0.1",
"vue-template-compiler": "^2.5.17"
}
}