-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ien",
"private": true,
"description": "IEN app packages",
"engines": {
"node": ">=16.15.1"
},
"scripts": {
"format:staged": "yarn pretty-quick --staged",
"format:check": "yarn prettier --check .",
"format:write": "yarn prettier --write .",
"lint": "echo 'Linting all packages' && wsrun --parallel --exclude-missing lint",
"build-common": "echo 'Building all common packages packages' && wsrun --stages --exclude @ien/api --exclude @ien/web --exclude-missing build",
"build": "echo 'Building packages' && wsrun --stages --exclude-missing build",
"check": "run-p 'lint' 'format:check'",
"prepare": "husky install",
"watch:common": "wsrun --stages --exclude-missing watch",
"watch:api": "yarn workspace @ien/api start:debug:local",
"watch:web": "yarn workspace @ien/web dev",
"watch": "run-p 'watch:common' 'watch:api' 'watch:web'",
"start:api:local": "yarn workspace @ien/api start:local",
"start:web:local": "yarn workspace @ien/web start",
"start:local": "run-p 'start:api:local' 'start:web:local'",
"start:cypress": "yarn workspace @ien/web cypress",
"open:cypress": "yarn workspace @ien/web open:cypress",
"test": "echo 'Running tests' && wsrun --parallel --exclude-missing test",
"test:seed": "scripts/seed-test-data.sh",
"test:e2e": "start-test 'start:local' http://localhost:3000 'yarn test:seed && yarn start:cypress'",
"test:pa11y": "start-test 'start:local' http://localhost:3000 'yarn test:seed && yarn workspace @ien/accessibility start'"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@tsconfig/node14": "1.0.1",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"pretty-quick": "3.1.2",
"start-server-and-test": "1.14.0",
"ts-loader": "9.2.3",
"ts-node": "10.0.0",
"tsconfig-paths": "3.10.1",
"typescript": "4.3.5",
"wsrun": "5.2.4"
},
"dependencies": {
"@types/papaparse": "5.3.2",
"dayjs": "1.11.0",
"papaparse": "5.3.1",
"react-dropzone": "12.0.4",
"swr": "1.3.0"
},
"lint-staged": {
"*.{tsx,ts}": [
"prettier --write",
"eslint --cache --fix"
]
},
"resolutions": {
"axios": "0.28.0",
"express": "4.19.2",
"postcss": "8.4.31",
"@babel/traverse": "7.23.2",
"ws": "7.5.10",
"braces": "3.0.3",
"webpack": "5.94.0",
"semver": "7.5.2",
"xml2js": "0.5.0",
"word-wrap": "1.2.4",
"micromatch": "4.0.8",
"ip": "2.0.1"
}
}