-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.26 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": "compte-externe",
"private": true,
"version": "0.0.0",
"description": "Application to create users external users with modular moderation workflow",
"repository": "https://github.com/prigaux/compte-externe",
"license": "Apache-2.0",
"scripts": {
"postinstall": "cd app && npm install",
"prestart": "npm install",
"build": "concurrently npm:server-build npm:client-build",
"build:w": "concurrently npm:server-build:w npm:client-build:w",
"dev": "concurrently npm:server-build:w npm:client-dev",
"start": "concurrently npm:server-build npm:client-build npm:server-start",
"start:w": "concurrently npm:server-build:w npm:client-build:w npm:server-start:dev",
"test": "concurrently npm:server-build-and-test npm:client-test",
"client-build": "cd app && npm run build:atomic",
"client-build:w": "cd app && npm run build -- --watch",
"client-dev": "cd app && npm run dev",
"client-test": "cd app && npm run test:unit",
"client-test:w": "cd app && npm run test:unit -- --watch",
"server-build": "tsc -p server",
"server-build:w": "tsc -p server --watch",
"server-build-and-test": "npm run server-build && npm run server-test",
"server-start": "nodemon start-server.js",
"server-start:dev": "NODE_ENV=test nodemon --watch server/ --inspect start-server.js",
"server-test": "mocha --require source-map-support/register --recursive server/build/server",
"server-test:w": "npm run server-test -- --watch"
},
"engines": {
"node": ">= 14.21"
},
"dependencies": {
"@types/accept-language-parser": "^1.5.1",
"@types/body-parser": "^1.16.4",
"@types/bytes": "^3.1.1",
"@types/concat-stream": "^1.6.0",
"@types/cookie-parser": "^1.4.1",
"@types/cookie-session": "^2.0.36",
"@types/diff": "^5.0.2",
"@types/es6-promise": "0.0.32",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.3",
"@types/lodash": "^4.14.x",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.7.32",
"@types/node": "^14.14.20",
"@types/nodemailer": "^6.4.6",
"@types/session-file-store": "^1.2.0",
"@types/xml2js": "^0.4.0",
"accept-language-parser": "^1.5.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.12.4",
"concat-stream": "^1.5.0",
"connect-cas": "github:UnivParis1/connect-cas#3.0.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"csvtojson": "^2.0.10",
"debug": "^4.3.4",
"diff": "^5.1.0",
"es6-promise": "^4.1.1",
"express": "^4.12.4",
"express-session": "^1.15.6",
"html5-boilerplate": "0.0.1",
"iconv-lite": "^0.6.3",
"ldap-filter": "^0.3.3",
"ldapjs-promise-disconnectwhenidle": "github:UnivParis1/node-ldapjs-promise-disconnectWhenIdle",
"lodash": "^4.14.x",
"mongodb": "^4.12.1",
"morgan": "^1.5.3",
"nodemailer": "^6.8.0",
"nodemailer-sendmail-transport": "^1.0.0",
"promise-polyfill": "^6.0.2",
"session-file-store": "^1.2.0",
"simple-get": "^4.0.1",
"tslib": "^2.3.0",
"typescript": "4.4.x",
"xml2js": "^0.4.9"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-plugin-vue": "9.x",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"source-map-support": "^0.5.21"
}
}