-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "html-css-js-playground",
"version": "1.0.0",
"description": "A simple environment for rapid experimentation with HTML, CSS, and JavaScript. Ideal for quick tests and learning web development.",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./server.js",
"dev": "cross-env NODE_ENV=development nodemon -L ./server.js",
"debug": "cross-env NODE_ENV=development DEBUG=* node ./server.js",
"lint": "eslint '**/*.js'",
"lint:fix": "npm run lint -- --fix",
"setup-husky": "husky install",
"setup-eslint": "npm init @eslint/config@latest",
"watch": "watchify public/index.js -o public/bundle.js -v",
"dev:watch": "npm-run-all --parallel dev watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabee05/html-css-js-playground.git"
},
"keywords": [
"simple",
"html",
"expressjs",
"server"
],
"author": "Rabee Zyoud",
"license": "MIT",
"bugs": {
"url": "https://github.com/rabee05/html-css-js-playground/issues"
},
"homepage": "https://github.com/rabee05/html-css-js-playground#readme",
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-stage-0": "^7.8.3",
"@eslint/js": "^9.5.0",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"cross-env": "^7.0.3",
"eslint": "^9.5.0",
"globals": "^15.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.0"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"envify": "^4.1.0",
"express": "^4.19.2",
"socket.io": "^4.7.5",
"watchify": "^4.0.0"
},
"type": "module"
}