-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.5 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
{
"name": "plinco",
"version": "0.0.1",
"description": "Platform for International Cooperation",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "npm run web:build && npm run insa:build",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js",
"dev": "concurrently \"npm run server:dev\" \"npm run web:dev\" \"npm run insa:dev\"",
"insa:build": "grunt --base subapps/insa --gruntfile subapps/insa/Gruntfile.js build",
"insa:dev": "grunt --base subapps/insa --gruntfile subapps/insa/Gruntfile.js dev",
"web:build": "grunt --base subapps/web --gruntfile subapps/web/Gruntfile.js build",
"web:dev": "grunt --base subapps/web --gruntfile subapps/web/Gruntfile.js dev",
"server:dev": "nodemon -r dotenv/config --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js"
},
"_moduleAliases": {
"$root": ".",
"$lib": "./lib",
"$middleware": "./lib/middleware",
"$models": "./lib/models",
"$api": "./subapps/api",
"$insa": "./subapps/insa",
"$lti": "./subapps/lti",
"$web": "./subapps/web"
},
"dependencies": {
"cookie-parser": "1.4.5",
"express": "4.17.1",
"express-request-language": "1.1.15",
"i18n": "0.13.2",
"ioredis": "4.17.3",
"ltijs": "5.4.8",
"ltijs-sequelize": "2.2.4",
"module-alias": "2.2.2",
"pg": "8.4.1",
"prismic-dom": "2.2.4",
"prismic-javascript": "3.0.2",
"prismic.io": "3.6.1",
"pug": "3.0.0",
"qrcode": "1.4.4",
"sequelize": "6.3.5",
"tweetnacl": "0.14.5",
"tweetnacl-util": "0.15.1",
"vhost": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"concurrently": "5.3.0",
"dotenv": "8.2.0",
"grunt": "1.3.0",
"grunt-babel": "8.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-sass": "3.1.0",
"load-grunt-tasks": "5.1.0",
"mocha": "8.2.1",
"node": "12.19.0",
"node-sass": "4.14.1",
"nodejs": "0.0.0",
"nodemon": "2.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fivebyfive-se/plinco.git"
},
"keywords": [
"lms",
"learning",
"university",
"research",
"collaboration"
],
"author": "Kalle Räisänen <kalle@fivebyfive.se>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fivebyfive-se/plinco/issues"
},
"homepage": "https://github.com/fivebyfive-se/plinco#readme",
"engines": {
"node": ">15.1.0"
}
}