-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 4.2 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
{
"name": "@oreillymedia/tsrouter_client",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/oreillymedia/tsrouter-client.git"
},
"orm:project-type": "front-end-application",
"dependencies": {
"@launchdarkly/node-server-sdk": "9.7.2",
"@oreillymedia/bef-server": "2.4.8",
"@oreillymedia/fef-actions": "3.1.11",
"@oreillymedia/fef-server": "4.23.7",
"@reduxjs/toolkit": "2.3.0",
"cookie": "1.0.2",
"cors": "2.8.5",
"dd-trace": "5.27.0",
"ejs": "3.1.10",
"express": "4.21.1",
"jsonwebtoken": "9.0.2",
"jwks-rsa": "3.1.0",
"jwt-decode": "4.0.0",
"lodash.camelcase": "4.3.0",
"lodash.kebabcase": "4.1.1",
"lodash.snakecase": "4.1.1",
"unidecode": "1.1.0",
"winston": "3.17.0"
},
"devDependencies": {
"@applitools/eyes-cypress": "3.47.0",
"@csstools/postcss-global-data": "3.0.0",
"@cypress/code-coverage": "3.13.7",
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@eslint/js": "9.15.0",
"@mui/material": "5.16.7",
"@oreillymedia/chassis-core": "3.6.2",
"@oreillymedia/fe-analytics": "5.9.0",
"@oreillymedia/frontend-foundation": "8.34.3",
"@oreillymedia/js-schematics": "1.22.5",
"@oreillymedia/msw-integration": "1.1.9",
"@oreillymedia/omui": "3.14.4",
"@testing-library/cypress": "10.0.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"autoprefixer": "10.4.20",
"classnames": "2.5.1",
"cypress": "13.15.0",
"dotenv": "16.4.5",
"esbuild": "0.24.0",
"esbuild-plugin-browserslist": "0.15.0",
"esbuild-plugin-copy": "2.1.1",
"esbuild-style-plugin": "1.6.3",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"fetch-mock": "12.2.0",
"globals": "15.12.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"lodash.throttle": "4.1.1",
"nodemon": "3.1.7",
"postcss": "8.4.49",
"postcss-custom-media": "11.0.5",
"postcss-import": "16.1.0",
"postcss-media-minmax": "5.0.0",
"postcss-nested": "6.2.0",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-redux": "9.1.2",
"react-router-dom": "6.28.0",
"redux": "5.0.1",
"rimraf": "6.0.1"
},
"main": "dist/index.js",
"scripts": {
"eslint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
"test": "DOTENV_CONFIG_PATH=env.tests npx --node-options='--require=dotenv/config' jest --coverage",
"test:ci": "chassis test-ci --cypress component,e2e",
"test:cypress": "chassis cypress",
"test:debug": "DOTENV_CONFIG_PATH=env.tests npx --node-options='--inspect-brk --require=dotenv/config' jest --coverage",
"test:watch": "DOTENV_CONFIG_PATH=env.tests npx --node-options='--require=dotenv/config' jest --watch",
"test:nocover": "DOTENV_CONFIG_PATH=env.tests npx --node-options='--require=dotenv/config' jest",
"start:dev": "DOTENV_CONFIG_PATH=env.local nodemon --require dotenv/config --watch src/server.js src/bootstrap.js",
"build": "DOTENV_CONFIG_PATH=env.prod-gke node --require=dotenv/config ./build.js"
},
"packageJsonDocumentation": {
"templateSource": "https://github.com/oreillymedia/chassis/blob/develop/chassis/conf/project_template_frontend/package.json",
"chassisCommandsSource": "https://github.com/oreillymedia/chassis-core-js#commands",
"scripts": {
"eslint": "Runs [eslint](https://eslint.org/) for the application's JS code. In some repos this command is also run as part of the CI process.",
"test[...]": "For explanation and details please see the [Frontend Testing](https://devdocs.common-build.gcp.oreilly.com/chassis/frontend_dev.html#testing) section.",
"start[...]": "You likely do not want to run these commands yourself; they are run through docker chassis commands.",
"build": "You likely do not want to run these commands yourself; they are run through docker chassis commands."
}
}
}