This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.05 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
{
"name": "bundle-size",
"description": "Find the cost of adding a npm package to your bundle",
"version": "1.0.0",
"main": "dist/server/index.js",
"scripts": {
"dev": "nodemon",
"prebuild": "rm -rf .next/ dist/",
"build": "run-p build:*",
"build:next": "dotenv next build",
"build:server": "tsc --project tsconfig.server.json",
"postbuild": "cp -r public/ dist/public/",
"start": "cross-env NODE_ENV=production node .",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"env": "[ -f .env ] || cp .env.example .env",
"docker:dev-start": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build",
"docker:dev-stop": "docker-compose -f docker-compose.dev.yml down --remove-orphans",
"docker:start": "docker-compose up -d --build",
"docker:stop": "docker-compose down -v --remove-orphans --rmi local"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/henriquecarv/bundle-size.git"
},
"author": "Henrique Carvalho da Cruz <[email protected]> (https://henriquecarv.com)",
"license": "MIT",
"homepage": "https://github.com/henriquecarv/bundle-size#readme",
"bugs": "https://github.com/henriquecarv/bundle-size/issues",
"dependencies": {
"@koa/cors": "^3.1.0",
"@react-hook/window-size": "^3.0.6",
"compression": "^1.7.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"gzip-size": "^5.1.1",
"koa": "^2.13.0",
"koa-connect": "^2.1.0",
"koa-favicon": "^2.1.0",
"koa-helmet": "^5.2.0",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.8",
"next": "^9.4.4",
"next-fonts": "^1.2.0",
"nextjs-koa-middleware": "^2.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recharts": "^1.8.5",
"semver-diff": "^3.1.1",
"terser-webpack-plugin": "^3.0.6",
"to-semver": "^3.0.0",
"webpack": "^4.43.0"
},
"devDependencies": {
"@testing-library/react": "^10.4.3",
"@types/compression": "^1.7.0",
"@types/jest": "^26.0.3",
"@types/koa": "^2.11.3",
"@types/koa-favicon": "^2.0.19",
"@types/koa-helmet": "^5.2.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.1",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "16.9.8",
"@types/recharts": "^1.8.13",
"@types/styled-jsx": "^2.2.8",
"@types/terser-webpack-plugin": "^3.0.0",
"@types/testing-library__react": "^10.2.0",
"@types/webpack": "^4.41.18",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"dotenv-cli": "^3.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.3",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-watch-typeahead": "^0.6.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}