-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "tp110",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"start": "concurrently 'npm run start:server' 'npm run start:browser'",
"start:server": "nodemon ./front/server/index.ts",
"start:browser": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemoustachiste/tp110.git"
},
"author": "Julien Fraichot",
"license": "ISC",
"bugs": {
"url": "https://github.com/lemoustachiste/tp110/issues"
},
"homepage": "https://github.com/lemoustachiste/tp110#readme",
"dependencies": {
"chart.js": "^3.9.1",
"cors": "^2.8.5",
"express": "^4.18.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/yargs": "^17.0.11",
"cliui": "^7.0.2",
"concurrently": "^7.4.0",
"jest": "^29.1.1",
"nodemon": "^2.0.20",
"rollup": "^2.79.1",
"rollup-plugin-serve": "^2.0.1",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"y18n": "^5.0.5",
"yargs": "^17.3.1",
"yargs-parser": "^21.0.0"
}
}