This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.83 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
{
"name": "@crystal-ball/react-app-prototype",
"version": "1.0.0",
"description": "Prototypical React application",
"keywords": [
"prototype",
"react"
],
"contributors": [
"Dan Hedgecock <[email protected]> (https://danhedgecock.com)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/crystal-ball/react-app-prototype.git"
},
"engines": {
"node": "16"
},
"scripts": {
"start": "NODE_ENV=development webpack serve",
"start:instrument": "NODE_ENV=development BABEL_ENV=instrument webpack serve",
"start:docker": "NODE_ENV=development webpack serve --host=0.0.0.0",
"start:storybook": "start-storybook -p 6006",
"build": "NODE_ENV=production webpack",
"build:stats": "NODE_ENV=production webpack --json > stats.json",
"build:storybook": "build-storybook",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "NODE_ENV=test eslint --format=pretty .",
"test:types": "tsc",
"test:unit": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:acceptance": "docker-compose up --exit-code-from cypress",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"format": "prettier --write . !CHANGELOG.md !coverage_cypress !coverage_jest !public"
},
"dependencies": {
"@babel/runtime": "7.18.9",
"@linaria/core": "4.1.0",
"@reduxjs/toolkit": "1.8.3",
"classnames": "2.3.1",
"componentry": "5.0.0",
"core-js": "3.24.1",
"dux-routing": "0.5.0",
"nanoid": "4.0.0",
"numeral": "2.0.6",
"path-to-regexp": "6.2.1",
"prism-react-renderer": "1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.2",
"redux": "4.2.0",
"redux-saga": "1.1.3",
"redux-thunk": "2.4.1",
"regenerator-runtime": "0.13.9",
"svg-symbol-sprite-loader": "5.1.0",
"tailwindcss": "3.1.7"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/plugin-transform-runtime": "7.18.9",
"@babel/preset-env": "7.18.9",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@cypress/code-coverage": "3.10.0",
"@linaria/webpack-loader": "4.1.1",
"@mdx-js/loader": "2.1.2",
"@percy/cli": "1.7.2",
"@percy/cypress": "3.1.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addons": "6.5.9",
"@storybook/builder-webpack5": "6.5.9",
"@storybook/manager-webpack5": "6.5.9",
"@storybook/react": "6.5.9",
"@storybook/theming": "6.5.9",
"@svgr/webpack": "6.3.1",
"@testing-library/cypress": "8.0.3",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.3.0",
"@types/jest": "28.1.6",
"@types/numeral": "2.0.2",
"@types/react-dom": "18.0.6",
"@types/react-redux": "7.1.24",
"autoprefixer": "10.4.8",
"babel-loader": "8.2.5",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-transform-import-aliases": "1.2.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"cypress": "10.3.1",
"eslint-config-eloquence": "22.1.0",
"eslint-plugin-mdx": "2.0.2",
"html-webpack-plugin": "5.5.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-extended": "3.0.1",
"mini-css-extract-plugin": "2.6.1",
"node-notifier": "10.0.1",
"postcss": "8.4.14",
"postcss-loader": "7.0.1",
"prettier": "2.7.1",
"react-refresh": "0.14.0",
"style-loader": "3.3.1",
"terser-webpack-plugin": "5.3.3",
"typescript": "4.7.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3",
"webpack-merge": "5.8.0"
}
}