-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.07 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.07 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
54
55
{
"name": "powernode-platform",
"version": "0.3.1",
"description": "Subscription management platform with Rails 8 API and React TypeScript frontend",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd server && bundle exec rails server -p 3001",
"dev:frontend": "cd frontend && npm start",
"test": "concurrently \"npm run test:backend\" \"npm run test:frontend\"",
"test:backend": "cd server && bundle exec rspec",
"test:frontend": "cd frontend && npm test -- --watchAll=false",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"security": "concurrently \"npm run security:backend\" \"npm run security:frontend\"",
"security:backend": "cd server && bundle exec rake security:all",
"security:frontend": "cd frontend && npm audit && npm run lint:security",
"lint": "concurrently \"npm run lint:backend\" \"npm run lint:frontend\"",
"lint:backend": "cd server && bundle exec rubocop",
"lint:frontend": "cd frontend && npm run lint",
"build": "cd frontend && npm run build",
"setup": "npm run setup:backend && npm run setup:frontend",
"setup:backend": "cd server && bundle install && bundle exec rails db:create db:migrate db:seed",
"setup:frontend": "cd frontend && npm install"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"concurrently": "^9.2.1",
"playwright": "^1.58.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"subscription",
"billing",
"rails",
"react",
"typescript",
"stripe",
"paypal"
],
"author": "Everett C. Haimes III",
"license": "GPL-3.0-or-later",
"dependencies": {
"ws": "^8.18.3"
}
}