-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.83 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
{
"name": "ttc",
"version": "1.0.0",
"description": "Tech Teacher's Companion",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "concurrently --names l,wp,n --prefix \"[{name}] {time}\" --handle-input --kill-others-on-fail -t \"HH:mm:ss.SSSS\" -c yellow,cyan,green npm:dev:eslint npm:dev:build npm:dev:start",
"dev:start": "nodemon src/server.js | pino-pretty",
"dev:build": "webpack --mode=development --watch",
"dev:eslint": "eslint -c .eslintrc.json *.js client/src",
"gen-secret-key": "./node_modules/.bin/secure-session-gen-key > secret-key",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --mode=production && npm run gen-secret-key",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "./node_modules/.bin/husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@bluepostit/data-tree": "^1.0.1",
"@popperjs/core": "^2.10.2",
"bcrypt": "^5.0.1",
"bootstrap-icons": "^1.4.1",
"concurrently": "^6.1.0",
"dotenv": "^9.0.0",
"fastify": "^3.15.1",
"fastify-accepts": "^2.1.0",
"fastify-cookie": "^5.3.0",
"fastify-env": "^2.1.1",
"fastify-error-page": "^4.0.0",
"fastify-flash": "^2.0.2",
"fastify-formbody": "^5.0.0",
"fastify-plugin": "^3.0.0",
"fastify-secure-session": "^2.3.1",
"fastify-sensible": "^3.1.1",
"fastify-static": "^4.0.1",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"lmdb": "^2.7.0",
"make-promises-safe": "^5.1.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-emoji": "^2.0.0",
"markdown-it-highlightjs": "^3.4.0",
"markdown-it-table-of-contents": "^0.5.2",
"nunjucks": "^3.2.3",
"pino-pretty": "^4.7.1",
"point-of-view": "^4.14.0",
"tocbot": "^4.17.0",
"vue": "^2.6.14",
"vuex": "^3.6.2",
"workbox-cacheable-response": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0",
"workbox-webpack-plugin": "^6.3.0"
},
"devDependencies": {
"@types/bootstrap": "^5.1.6",
"bootstrap": "^5.0.0",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.6.0",
"nodemon": "^2.0.7",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"standard": "^16.0.3",
"style-loader": "^2.0.0",
"vue-loader": "^15.9.8",
"vue-router": "^3.5.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
},
"nodemonConfig": {
"ext": "js,json,yaml,njk,scss,env",
"watch": [
"*.*",
".env"
],
"ignore": "base.njk"
}
}