-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 3.24 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
{
"name": "@optimistdigital/create-frontend",
"version": "18.0.3",
"description": "Creates an encapsulated frontend build solution for js-based projects",
"repository": {
"type": "git",
"url": "https://github.com/optimistdigital/create-frontend.git"
},
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"e2e": "jest --testMatch=\"**/?(*.)(e2e).js?(x)\" --runInBand --detectOpenHandles"
},
"bin": {
"create-frontend": "bin/create-frontend.js",
"frontend-scripts": "bin/frontend-scripts.js"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/config/setupTestFramework.js"
]
},
"engines": {
"node": ">=12.13.0"
},
"author": "",
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/plugin-transform-react-display-name": "^7.15.1",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@optimistdigital/eslint-config-rules": "^2.0.0",
"autoprefixer": "^10.3.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"clean-webpack-plugin": "^4.0.0",
"compression": "^1.7.4",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.0.2",
"detect-port": "^1.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.0.1",
"eval": "^0.1.6",
"execa": "^5.1.1",
"fibers": "^5.0.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"fs-readdir-recursive": "^1.1.0",
"helmet": "^4.6.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"json5": "^2.2.0",
"loader-utils": "^2.0.0",
"memfs": "^3.2.4",
"mini-css-extract-plugin": "^2.3.0",
"minimist": "^1.2.5",
"node-notifier": "^10.0.0",
"postcss": "^8.3.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"prettier": "^2.4.0",
"readline-sync": "^1.4.10",
"resolve-url-loader": "^4.0.0",
"sass": "^1.40.1",
"sass-loader": "^12.1.0",
"semver": "^7.3.5",
"serialize-javascript": "^6.0.0",
"start-server-webpack-plugin": "^2.2.5",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.52.1",
"webpack-assets-manifest": "^5.0.6",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0",
"webpack-virtual-modules": "^0.4.3"
},
"devDependencies": {
"jest": "^27.2.0",
"node-fetch": "^2.7.0",
"tmp": "^0.2.1"
}
}