-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nypl-library-card-app",
"version": "2.0.0",
"description": "NYPL Get A Library Card App",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"local-prod": "next build && NODE_ENV=production node https-server.js",
"eb:start": "npm run build && npm run start",
"test": "jest",
"clear": "jest --clearCache",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open"
},
"engines": {
"node": ">=10.24.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NYPL/nypl-library-card-app"
},
"keywords": [
"react",
"next",
"es6",
"sass"
],
"author": "NYPL Digital",
"license": "MIT",
"bugs": {
"url": "https://github.com/issues"
},
"dependencies": {
"@babel/preset-typescript": "7.10.4",
"@nypl/design-system-react-components": "1.2.0",
"@nypl/dgx-react-footer": "0.5.7",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "5.0.3",
"@types/jest": "29.5.12",
"@types/jest-axe": "3.5.9",
"@types/node": "14.0.14",
"@types/react": "16.9.41",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.5.0",
"axios": "1.7.2",
"babel-jest": "27.4.6",
"bwip-js": "2.0.10",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"crypto": "1.0.1",
"cypress": "6.2.1",
"eslint": "7.11.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jsx-a11y": "6.3.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "9.0.11",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "16.5.0",
"lint-staged": "10.1.3",
"lodash": "4.17.21",
"moment": "2.30.1",
"next": "12.3.4",
"next-i18next": "11.3.0",
"prettier": "2.0.4",
"qs": "6.10.4",
"react": "17.0.2",
"react-autosuggest": "10.0.2",
"react-dom": "17.0.2",
"react-ga4": "2.1.0",
"react-hook-form": "6.15.3",
"react-test-renderer": "17.0.2",
"request": "2.88.2",
"request-ip": "3.3.0",
"request-promise-native": "1.0.9",
"sass": "1.26.9",
"save-dev": "0.0.1-security",
"sinon": "9.0.2",
"typescript": "4.9.5",
"underscore": "1.13.1",
"validator": "13.0.0",
"winston": "3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}