-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 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
{
"name": "open-response",
"version": "0.1.0",
"private": true,
"description": "Open Source Classroom Polling Software",
"repository": {
"type": "git",
"url": "https://github.com/OSU-MC/Open-Response/"
},
"workspaces": [
"core",
"client",
"socket"
],
"scripts": {
"init": "chmod +x ./docker/first_time_setup.sh && ./docker/first_time_setup.sh",
"config-unix": "npm run config-unix -w=core && npm run config-unix -w=client && npm run config-unix -w=socket",
"config": "npm run config -w=core && npm run config -w=client && npm run config -w=socket",
"start": "npm run build:containers && npm run deploy:stack",
"stop": "npm run remove:stack",
"build:containers": "docker build -t openresponse_backend ./core && docker build -t openresponse_frontend ./client && docker build -t openresponse_socket ./socket",
"deploy:stack": "docker stack deploy -c docker-stack.yml openresponse",
"remove:stack": "docker stack rm openresponse",
"start:dev": "concurrently \"cd client && npm run start\" \"cd core && npm run start\" \"cd socket && npm run start\"",
"prepare": "husky",
"format": "prettier --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss,yml,yaml}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.52.0",
"axe-core": "^4.10.3",
"concurrently": "^7.6.0",
"dotenv": "^16.5.0",
"forever": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "3.6.2"
}
}