-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.91 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "nypl-discovery",
"version": "1.9.0",
"description": "Isomorphic React App for NYPL Research Catalog.",
"main": "index.js",
"scripts": {
"start": "node index",
"prod-start": "cross-env NODE_ENV=production PLATFORM_API_BASE_URL=https://platform.nypl.org/api/v0.1 node index",
"dev-api-start": "cross-env PLATFORM_API_BASE_URL=https://dev-platform.nypl.org/api/v0.1 KMS_ENV=unencrypted node index",
"prod-api-start": "cross-env PLATFORM_API_BASE_URL=https://platform.nypl.org/api/v0.1 KMS_ENV=encrypted node index",
"dev": "webpack --config webpack-dev.config.js && APP_ENV=development NODE_ENV=development KMS_ENV=encrypted npm run start",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production APP_ENV=production webpack --config webpack.config.js",
"test": "mocha test/helpers/browser.js test/unit/*.test.js*",
"test-dev": "mocha -w test/helpers/browser.js test/unit/*.test.js",
"test-file": "mocha -w test/helpers/browser.js",
"coverage": "BABEL_ENV=test node_modules/.bin/nyc --require mocha npm test",
"coverage-report": "BABEL_ENV=test node_modules/.bin/nyc report --reporter=lcov",
"nightwatch": "./node_modules/.bin/nightwatch",
"map-names": "node -e 'require(\"./easyImports\").write()'",
"readme-toc": "node_modules/.bin/doctoc README.md"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"webpack",
"boilerplate",
"sass",
"hot",
"reload"
],
"license": "MIT",
"bugs": {
"url": "https://github.com//issues"
},
"nyc": {
"extension": [
".jsx"
],
"require": [
"@babel/register"
]
},
"dependencies": {
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/register": "7.24.6",
"@nypl/design-system-react-components": "1.4.1",
"@nypl/dgx-svg-icons": "0.2.5",
"@nypl/nypl-core-objects": "2.2.0",
"@nypl/nypl-data-api-client": "1.0.1",
"aws-sdk": "2.99.0",
"axios": "1.7.2",
"babel-loader": "8.2.5",
"body-parser": "1.18.3",
"clean-webpack-plugin": "4.0.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cross-env": "7.0.3",
"css-loader": "5.2.4",
"dotenv": "16.4.5",
"ejs": "3.1.10",
"express": "4.19.2",
"file-loader": "6.0.0",
"focus-trap-react": "10.2.3",
"history": "3.3.0",
"iso8601-duration": "2.1.1",
"jsonwebtoken": "8.3.0",
"prop-types": "15.8.1",
"react": "16.14.0",
"react-a11y": "0.3.4",
"react-autosuggest": "10.1.0",
"react-document-title": "2.0.3",
"react-dom": "16.14.0",
"react-ga": "1.2.0",
"react-number-format": "5.4.0",
"react-redux": "7.2.1",
"react-router": "3.0.5",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"rootpath": "0.1.2",
"sass": "1.77.6",
"sass-loader": "14.2.1",
"style-loader": "4.0.0",
"underscore": "1.13.6",
"url-parse": "1.4.7",
"validator": "13.7.0",
"webpack": "5.92.1",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "7.2.1",
"@typescript-eslint/eslint-plugin": "6.1.0",
"axios-mock-adapter": "1.21.2",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "4.2.0",
"doctoc": "2.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.8.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jsdom": "9.0.0",
"mini-css-extract-plugin": "2.9.0",
"mocha": "10.6.0",
"mock-local-storage": "1.1.20",
"nightwatch": "2.3.0",
"nock": "13.0.11",
"nyc": "15.1.0",
"prettier": "2.5.1",
"redux-mock-store": "1.5.4",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"supertest": "6.1.3",
"typescript": "4.5.5",
"winston": "3.2.1"
}
}