-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "deliberation-empirica",
"version": "1.0.0",
"description": "Deliberation Experiment Platform",
"devDependencies": {
"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"
},
"scripts": {
"build": "sh builder.sh",
"start": "sh runner.sh",
"pretest": "cd cypress && npm install",
"test": "cd cypress && npx cypress open",
"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": {
"react": "^18.2.0"
}
}