-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:malgorithms/tcftg-browser.git",
"author": "Chris Coyne <ccoyne77@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"watch": "webpack -w",
"build-site": "tsc --project tsconfig.backend.json",
"run-site": "node backend-compiled/backend/app.js",
"app": "yarn build-site && yarn run-site"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.16",
"@types/serve-favicon": "^2.5.7",
"affine": "^0.0.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"prettier": "^3.2.5",
"serve-favicon": "^2.5.0",
"stathat": "^0.0.8",
"toffee": "^0.3.7",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"webpack-cli": "^5.1.4"
}
}