-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.78 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.78 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "simplified-circulation-web",
"version": "0.6.0",
"description": "Web Front-end for Library Simplified Circulation Manager Admin Interface",
"repository": {
"type": "git",
"url": "https://github.com/NYPL-Simplified/circulation-web.git"
},
"main": "dist/circulation-web.js",
"author": "NYPL",
"license": "Apache-2.0",
"scripts": {
"prepublish": "npm run prod",
"lint": "tslint -c tslint.json src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx src/**/**/*.ts src/**/**/*.tsx && sass-lint -c .sass-lint.yml -v -q",
"test": "npm run lint && tsc && cp -r src/stylesheets lib && mocha --require lib/testHelper.js lib/__tests__/*.js lib/**/__tests__/*.js lib/**/**/__tests__/*.js",
"test-jest": "jest",
"local-tsc": "tsc",
"test-list": "mocha --require lib/testHelper.js lib/__tests__/*.js lib/**/__tests__/*.js lib/**/**/__tests__/*.js --reporter ./testReporter.js",
"test-file": "npm run lint && tsc && cp -r src/stylesheets lib && mocha --require lib/testHelper.js",
"test-browser": "npm run test-chrome && npm run test-firefox",
"dev": "webpack --watch --progress --display-modules --config webpack.dev.config",
"dev-test-axe": "TEST_AXE=true npm run dev",
"prod": "NODE_OPTIONS=--openssl-legacy-provider webpack -p --progress --display-modules --config webpack.prod.config",
"build-docs": "typedoc --tsconfig tsconfig.json"
},
"dependencies": {
"@nypl/dgx-svg-icons": "0.3.4",
"bootstrap": "3.3.6",
"draft-convert": "2.1.5",
"draft-js": "0.11.7",
"library-simplified-reusable-components": "1.3.18",
"numeral": "2.0.6",
"opds-feed-parser": "0.1.0",
"opds-web-client": "0.7.0",
"prop-types": "15.7.2",
"qs": "6.2.0",
"react": "16.8.6",
"react-beautiful-dnd": "11.0.2",
"react-bootstrap": "0.32.4",
"react-color": "2.14.1",
"react-dom": "16.8.6",
"react-redux": "7.1.0",
"react-router": "3.2.0",
"recharts": "^1.0.1",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"request": "2.88.2",
"ts-node": "10.9.2"
},
"devDependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@types/mocha": "8.2.2",
"@types/node": "18.15.3",
"@types/prop-types": "15.7.3",
"@types/react": "16.14.6",
"@types/react-redux": "7.1.16",
"@types/recharts": "1.8.24",
"@typescript-eslint/eslint-plugin": "6.1.0",
"babel-jest": "27.4.6",
"chai": "4.2.0",
"clean-webpack-plugin": "^2.0.1",
"colors-cli": "1.0.27",
"css-loader": "5.2.4",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.12.1",
"eslint": "7.32.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.34.4",
"fetch-mock": "7.3.1",
"file-loader": "3.0.1",
"follow-redirects": "1.7.0",
"husky": "4.3.0",
"jest": "27.4.7",
"jsdom": "9.5.0",
"lint-staged": "15.2.7",
"mini-css-extract-plugin": "1.3.0",
"mocha": "10.6.0",
"prettier": "2.1.2",
"react-axe": "3.3.0",
"sass": "1.77.6",
"sass-lint": "1.13.1",
"sass-loader": "10.0.0",
"selenium-standalone": "6.16.0",
"sinon": "18.0.0",
"style-loader": "0.13.1",
"terser-webpack-plugin": "1.3.0",
"ts-loader": "8.3.0",
"tslint": "^5.20.1",
"typedoc": "0.21.0",
"typescript": "4.2.4",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "2.2.0",
"webpack": "4.40.0",
"webpack-cli": "3.3.0",
"webpack-merge": "4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write",
"*.{js,css,md}": "prettier --write"
}
}