-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "website-on-ice",
"version": "2.1.0",
"description": "Portfolio webpage and sandbox",
"main": "dist/server.js",
"scripts": {
"start": "nodemon --watch src -e ts,ejs,css --exec npm run dev:start",
"dev": "node .",
"dev:start": "npm-run-all build dev",
"build": "npm-run-all clean lint tsc copy-assets",
"copy-assets": "ts-node tools/copyAssets",
"tsc": "tsc",
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MagnusCardell/website-on-ice.git"
},
"author": "Magnus Cardell",
"license": "ISC",
"bugs": {
"url": "https://github.com/MagnusCardell/website-on-ice/issues"
},
"homepage": "https://github.com/MagnusCardell/website-on-ice#readme",
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.16.4",
"tsc-hooks": "^1.1.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jquery": "^3.5.14",
"@types/node": "^18.11.7",
"@types/shelljs": "^0.8.11",
"concurrently": "^7.5.0",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}