-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.15 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
{
"name": "adonis-5-boilerplate",
"author": "@crrmacarse",
"version": "0.0.0",
"private": true,
"scripts": {
"hot": "webpack-dev-server --open --hot --profile --progress --colors --config=webpack.config.babel.js --env=hot",
"dev": "webpack --watch --profile --progress --config=webpack.config.babel.js --env=development",
"build": "node ace build",
"build:frontend": "webpack --profile --progress --config=webpack.config.babel.js --env=production",
"start": "node ace serve --watch",
"lint": "eslint . --ext=.ts"
},
"devDependencies": {
"@adonisjs/assembler": "^1.3.9",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/core-js": "^2.5.3",
"@types/raf": "^3.4.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-loadable": "^5.5.3",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.4",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"adonis-preset-ts": "^1.0.4",
"autoprefixer": "^9.7.6",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-adonis": "^1.0.9",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"node-sass": "^4.13.1",
"pino-pretty": "^4.0.0",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.4",
"terser-webpack-plugin": "^2.3.5",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"utility-types": "^3.10.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"youch": "^2.0.10",
"youch-terminal": "^1.0.0"
},
"dependencies": {
"@adonisjs/ace": "^6.9.2",
"@adonisjs/core": "^5.0.0-preview.5",
"@adonisjs/fold": "^6.3.5",
"@adonisjs/session": "^2.3.3",
"@adonisjs/view": "^1.0.13",
"@babel/polyfill": "^7.8.7",
"babel-loader": "^8.1.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"compression-webpack-plugin": "^3.1.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"eslint-loader": "^4.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "^7.0.27",
"postcss-loader": "^3.0.0",
"proxy-addr": "^2.0.6",
"raf": "^3.4.1",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loadable": "^5.5.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.5",
"source-map-support": "^0.5.16",
"typesafe-actions": "^5.1.0",
"webpack-dev-server": "^3.10.3"
}
}