-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "pixel-intelligence",
"version": "1.0.0",
"description": "A pixel art editor full-stack application",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"backend": "npm run watch -w backend",
"frontend": "npm run dev -w frontend",
"start": "concurrently \"npm run backend\" \"npm run frontend\"",
"dev": "npm run start",
"watch": "npm run start",
"build": "cd frontend && npm install && npm run build",
"lint": "eslint -c ./frontend/eslint.config.js ./frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConnorBP/pixel-intelligence.git"
},
"keywords": [
"art",
"application",
"design"
],
"author": "ConnorBP, sanjeev-cs, superYM222, Parmilashams",
"license": "MIT",
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"concurrently": "^8.2.2",
"eslint": "^9.16.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"vite": "^6.0.3"
},
"bugs": {
"url": "https://github.com/ConnorBP/pixel-intelligence/issues"
},
"homepage": "https://github.com/ConnorBP/pixel-intelligence#readme"
}