-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.26 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.26 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
{
"name": "react-project-template",
"version": "1.0.0",
"description": "React Project Template",
"main": "index.js",
"scripts": {
"test": "cross-env cypress run --browser chrome",
"test-headless": "cross-env cypress run",
"test-ci": "cross-env start-server-and-test dev http-get://localhost:3000 test-headless",
"lint": "cross-env eslint src/**/**.js config/**/**.js test/**/**.js",
"lint-fix": "cross-env eslint src/**/**.js config/**/**.js test/**/**.js --fix",
"profile": "cross-env NODE_ENV=production webpack --config=config/webpack.config.js --profile --json > stats.json",
"cypress": "cross-env cypress open",
"build": "cross-env NODE_ENV=production webpack --config=config/webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack serve --config=config/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actoaps/react-template.git"
},
"author": "Acto | Elias Jørgensen <ej@acto.dk>",
"license": "MIT",
"homepage": "https://acto.dk",
"dependencies": {
"@acto/ajax": "6.0.1",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@mui/material": "5.0.0",
"formik": "2.2.9",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "3.24.3",
"react-router-dom": "5.3.0",
"yup": "0.32.9"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-transform-mui-imports": "0.2.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "9.0.1",
"cross-env": "7.0.3",
"cypress": "8.4.1",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.26.0",
"eslint-plugin-react-hooks": "4.2.0",
"html-webpack-plugin": "5.3.2",
"prop-types": "15.7.2",
"react-refresh": "0.10.0",
"start-server-and-test": "1.14.0",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1",
"webpack-merge": "5.8.0"
}
}