-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.08 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
{
"name": "deliberation-empirica",
"version": "1.0.0",
"description": "Deliberation Experiment Platform",
"devDependencies": {
"@daily-co/daily-js": "^0.87.0",
"@daily-co/daily-react": "^0.24.0",
"@playwright/experimental-ct-react": "^1.49.1",
"@playwright/test": "^1.49.1",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1",
"vite-plugin-windicss": "^1.9.4"
},
"scripts": {
"build": "bash builder.sh",
"start": "bash runner.sh",
"start:etherpad": "bash start-etherpad.sh",
"pretest": "cd cypress && npm install",
"test": "cd cypress && npx cypress open",
"test:component": "playwright test -c playwright/playwright.config.mjs",
"test:component:headed": "playwright test -c playwright/playwright.config.mjs --headed",
"test:component:ui": "playwright test -c playwright/playwright.config.mjs --ui",
"test:component:integration": "playwright test -c playwright/playwright.integration.config.mjs",
"test:component:integration:headed": "playwright test -c playwright/playwright.integration.config.mjs --headed",
"test:component:integration:ui": "playwright test -c playwright/playwright.integration.config.mjs --ui",
"test:component:all": "npm run test:component && npm run test:component:integration",
"bundle": "empirica bundle",
"lint": "(npm list eslint || npm install) && eslint --ext .js --ext .jsx --ext .mjs client/src cypress server/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Watts-Lab/deliberation-empirica.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Watts-Lab/deliberation-empirica/issues"
},
"homepage": "https://github.com/Watts-Lab/deliberation-empirica#readme",
"dependencies": {
"dotenv": "^17.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}