-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.18 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
{
"name": "poo.email-client",
"version": "1.0.0",
"description": "A web client of poo.email",
"scripts": {
"clean": "rm -rf dist",
"dev": "npm run prebuild && webpack-dev-server --hot",
"prebuild": "check-engine && npm run clean",
"build": "webpack",
"build:prod": "npm run build -- --config webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/poo.email.git"
},
"engines": {
"node": "^12.0.0",
"npm": "^6.10.0"
},
"author": "MooYeol Prescott Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/poo.email/issues"
},
"homepage": "https://github.com/mooyoul/poo.email#readme",
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-transform-runtime": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/runtime": "7.10.5",
"@babel/runtime-corejs3": "7.10.5",
"@types/lodash.throttle": "4.1.6",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@typescript-eslint/parser": "3.6.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"check-engine": "1.8.1",
"css-loader": "3.6.0",
"eslint": "7.4.0",
"eslint-config-airbnb": "18.2.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"sass-loader": "9.0.2",
"style-loader": "1.2.1",
"terser-webpack-plugin": "3.0.7",
"ts-loader": "8.0.1",
"typescript": "3.9.7",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"axios": "^0.19.2",
"bulma": "^0.9.0",
"core-js": "3.6.5",
"dayjs": "^1.8.29",
"lodash.throttle": "^4.1.1",
"pretty-bytes": "^5.3.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-query": "^2.5.2",
"react-router-dom": "^5.2.0",
"use-constant": "1.0.0"
}
}