This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.72 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mat-process-TODO",
"private": true,
"scripts": {
"next": "next",
"dev": "node server/index.js",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"test": "npm run test:lint && npm run test:unit && npm run test:feature",
"test:update": "npm run test:lint:update && npm run test:unit:update && npm run test:feature:update",
"test:lint": "npm run format:check && npm run lint && npm run lint:codeowners",
"test:lint:update": "npm run format && npm run lint:fix && npm run lint:codeowners",
"test:unit": "jest --config jest.config.unit.js",
"test:unit:update": "npm run test:unit -- --updateSnapshot",
"test:unit:watch": "npm run test:unit -- --watch",
"test:feature": "PORT=3001 concurrently --names 'server,test' 'npm run test:feature:server' 'npm run test:feature:run' --kill-others --success first",
"test:feature:update": "PORT=3001 concurrently --names 'server,test' 'npm run test:feature:server' 'npm run test:feature:run -- --updateSnapshot' --kill-others --success first",
"test:feature:server": "export NEXT_DIST_DIR=.next-test && export DISABLE_MAT_PROCESS_ACTIONS=1 && export ENVIRONMENT_NAME=test && export PROCESS_NAME=TODO && export WORKTRAY_URL=https://work.tray && export DIVERSITY_FORM_URL=https://diversity.form && export FEEDBACK_FORM_URL=https://feedback.form && npm run build && npm start",
"test:feature:run": "wait-for-localhost ${PORT:-3000} && jest --config jest.config.feature.js --runInBand",
"lint": "eslint --report-unused-disable-directives --config ./.eslintrc.full.js '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:codeowners": "codeowners-enforcer -i 'package.json' -i 'package-lock.json'",
"format": "prettier --write '**/*'",
"format:check": "prettier --check '**/*'"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@hackney/mat-process-utils": "^0.1.0",
"cross-fetch": "^3.0.4",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lbh-frontend-react": "0.0.14",
"lodash": "^4.17.15",
"next": "9.4.2",
"next-offline": "^5.0.2",
"null-as-undefined": "^0.2.1",
"querystring": "^0.2.0",
"react": "^16.13.1",
"react-async-hook": "^3.6.1",
"react-dom": "^16.13.1",
"react-fast-compare": "^3.1.1",
"remultiform": "^0.2.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/jest-axe": "^3.2.2",
"@types/lodash": "^4.14.152",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-test-renderer": "^16.9.2",
"@types/selenium-webdriver": "^4.0.9",
"@types/styled-jsx": "^2.2.8",
"@types/uuid": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"codeowners-enforcer": "^1.0.3",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"is-online": "^8.3.1",
"jest": "^25.5.4",
"jest-axe": "^3.4.0",
"jest-circus": "^26.0.1",
"jest-cucumber": "^2.0.11",
"jest-date-mock": "^1.0.8",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.2",
"normalize.css": "^8.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1",
"selenium-webdriver": "^4.0.0-alpha.7",
"styled-jsx": "^3.3.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.3",
"utility-types": "^3.10.0",
"wait-for-localhost-cli": "^1.1.0",
"yn": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}