forked from hgrall/merite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.75 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.75 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": "demo-chat",
"version": "1.0.0",
"description": "Communication via web socket avec partage d'une biliotheque.",
"main": "webpack.config.js",
"scripts": {
"tsc": "tsc",
"webpack": "webpack",
"build": "npm run tsc && npm run verif && npm run webpack && cp index.html build/ && node build/chat/serveur/serveurTchat",
"start1": "npm run tsc && npm run verif && npm run webpack && cp index.html build/ && node build/chat/serveur/serveurTchat",
"start2": "npm run tsc && npm run verif && npm run webpack && cp index.html build/ && node build/routage/serveur/serveurRoutage",
"test": "mocha -r ts-node/register test/general.ts",
"verif": "tslint --exclude bibiliotheque/js **/*.ts"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/shelljs": "^0.7.2",
"@types/websocket": "0.0.34",
"awesome-typescript-loader": "^3.2.2",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"source-map-loader": "^0.2.1",
"ts-node": "^3.2.1",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"webpack": "^3.0.0"
},
"dependencies": {
"@types/material-ui": "^0.18.3",
"@types/react": "^16.0.1",
"@types/react-custom-scrollbars": "^4.0.1",
"@types/react-dom": "^16.0.0",
"@types/react-router-dom": "^4.2.0",
"@types/react-textarea-autosize": "^4.3.1",
"express": "^4.15.3",
"immutable": "^3.8.1",
"intl": "^1.2.5",
"material-ui": "^0.19.4",
"react": "^16.0.0",
"react-custom-scrollbars": "^4.1.2",
"react-dom": "^16.0.0",
"react-router-dom": "^4.2.2",
"react-textarea-autosize": "^5.1.0",
"rxjs": "^5.4.2",
"shelljs": "^0.7.8",
"styled-components": "^2.1.2",
"websocket": "^1.0.24"
}
}