forked from fullstack-hy2020/create-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 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
{
"name": "create-app",
"version": "1.0.0",
"description": "A boilerplate",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index.js",
"start": "cross-env NODE_ENV=production node index.js",
"build": "webpack --mode=production",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"cypress:open": "cypress open",
"test:e2e": "cypress run"
},
"engines": {
"node": ">=10.15"
},
"author": "Jami Kousa",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chokidar": "^3.5.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"dotenv": "^8.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"module-alias": "^2.2.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"sass": "^1.37.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"cypress": "^8.2.0",
"nodemon": "^2.0.12",
"webpack-dev-middleware": "^3.7.3",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0"
},
"nodemonConfig": {
"ignore": [
"dist/*",
"client/*",
"server/*"
]
},
"_moduleAliases": {
"@root": ".",
"@controllers": "server/controllers",
"@middleware": "server/middleware",
"@util": "server/util"
}
}