-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "playground",
"version": "1.0.0",
"description": "🕹️ A showcase of interactive web widgets demonstrating modern full-stack development capabilities, from data visualization to utility tools, built with Node.js, Express, MongoDB, and Webpack.",
"private": true,
"scripts": {
"start:dev": "NODE_ENV=development nodemon server.js",
"start": "NODE_ENV=production node server.js",
"lint:server": "eslint server.js server/**/*.js",
"lint:server:fix": "eslint server.js server/**/*.js --fix",
"format:server": "prettier --write '**/*.js'"
},
"keywords": [
"widgets",
"javascript widgets",
"mini apps",
"interactive widgets",
"calculator app",
"task tracker",
"financial dashboard",
"digital footprint",
"lottery analysis",
"github visualization",
"bookmark manager",
"full stack",
"node express",
"mongodb",
"webpack"
],
"author": {
"name": "Aniqa",
"email": "[email protected]",
"url": "https://aniqa.dev"
},
"license": "GPL-3.0",
"homepage": "https://playground.aniqa.dev",
"repository": {
"type": "git",
"url": "https://github.com/aniqatc/playground.git"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-useragent": "^1.0.15",
"leo-profanity": "^1.7.0",
"mongoose": "^8.0.3",
"natural": "^8.0.1",
"node-cron": "^3.0.3",
"prettier": "^3.4.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0"
}
}