-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 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": "frontend-movierama-iasonasimakopoulos",
"version": "0.0.1",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx jest",
"clean": "rm -rf dist/*",
"cp:static-files": "mkdir -p dist/ && cp src/index.html dist/index.html && cp -R src/static/ dist/static/ && cp -R src/assets/ dist/assets/",
"build:once": "npm run clean && npm run cp:static-files && tsc",
"watch-ts": "npm run clean && npm run cp:static-files && tsc --watch",
"serve": "node server.cjs",
"watch-dist": "npx browser-sync start --proxy 'localhost:4005' --files 'dist/**/*.*'",
"livereload": "concurrently \"npm run serve\" \"npm:watch-*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonAsmk/Frontend-MovieRama-IasonAsimakopoulos.git"
},
"author": "Iason Asimakopoulos",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonAsmk/Frontend-MovieRama-IasonAsimakopoulos/issues"
},
"homepage": "https://github.com/JasonAsmk/Frontend-MovieRama-IasonAsimakopoulos#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"browsersync": "^0.0.1-security",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.18.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/dompurify": "^3.0.5",
"default-passive-events": "^2.0.0"
}
}