-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 KB
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
{
"name": "asc-manager",
"private": true,
"version": "1.0.0",
"description": "A web dashboard for managing multiple Apple App Store Connect accounts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/codeflow-studio/asc-manager.git"
},
"keywords": [
"app-store-connect",
"apple",
"ios",
"dashboard",
"xcode-cloud",
"in-app-purchases",
"subscriptions",
"react",
"express"
],
"author": "Codeflow Studio",
"license": "MIT",
"scripts": {
"start": "node --env-file=.env --watch server/index.js & vite --clearScreen false",
"server": "node --watch server/index.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"adm-zip": "^0.5.16",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^29.0.1",
"supertest": "^7.2.2",
"tailwindcss": "^4.2.2",
"vite": "^6.0.0",
"vitest": "^4.1.0"
}
}