-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "communication",
"version": "2.0.0",
"description": "Jeu de distribution de messages avec adressage et routage et tchat.",
"main": "webpack.config.js",
"engines": {
"node": "14.16.1"
},
"scripts": {
"tsc": "tsc --incremental",
"webpack": "webpack",
"compil": "npm run tsc",
"build": "npm run tsc && npm run webpack",
"buildAvecVerif": "npm run tsc && npm run verif && npm run webpack",
"test": "mocha -r ts-node/register test/general.ts",
"testApp": "mocha -r ts-node/register test/applis.ts",
"verif": "tslint --exclude bibliotheque/js **/*.ts",
"demarrer": "node build/routage/serveur/serveurRoutage",
"documenter": "typedoc --out documentation/ bibliotheque/types"
},
"devDependencies": {
"tslint": "^6.1.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/sha1": "^1.1.2",
"@types/shelljs": "^0.8.8",
"@types/winston": "^2.4.4",
"D": "^1.0.0",
"chai": "^4.3.4",
"express": "^4.17.1",
"g": "^2.0.1",
"immutable": "^4.0.0-rc.12",
"mocha": "^8.4.0",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sha1": "^1.1.1",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"winston": "^3.3.3"
}
}