-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "aria-at-app",
"version": "1.10.0",
"description": "Run ARIA-AT tests and report results",
"main": "server/index.js",
"private": true,
"scripts": {
"a11y": "yarn workspace client lighthouse",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "yarn workspace client run dev",
"dev:server": "yarn workspace server run dev",
"update-snapshots": "yarn workspace client update-snapshots",
"dev-debug": "npm-run-all --parallel dev:client dev-debug:server",
"dev-debug:server": "yarn workspace server run dev-debug",
"jest": "yarn workspaces run jest",
"prettier": "yarn workspaces run prettier",
"lint": "yarn workspaces run lint",
"test": "set -e; yarn prettier; yarn lint; yarn jest",
"db-init:dev": "bash db/scripts/db_init.sh config/dev.env",
"db-init:test": "bash db/scripts/db_init.sh config/test.env",
"db-import-tests:dev": "yarn workspace server db-import-tests:dev",
"storybook": "yarn workspaces run storybook",
"sequelize": "dotenv -e config/dev.env npx sequelize-cli",
"sequelize:test": "dotenv -e config/test.env npx sequelize-cli",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/aria-at-app.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/w3c/aria-at-app/issues"
},
"homepage": "https://github.com/w3c/aria-at-app#readme",
"workspaces": [
"client",
"server",
"shared"
],
"dependencies": {
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}