forked from badgen/badgen.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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": "badgen.net",
"description": "Badge generating service",
"author": "Amio <[email protected]>",
"license": "ISC",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.jsx .",
"build:api": "tsc -p server.tsconfig.json",
"build:web": "next build && next export -o dist",
"build": "npm run tools && npm run build:web && npm run build:api",
"dev": "npm run build && npm run dev:api",
"dev:api": "nodemon --config nodemon.json index.ts",
"dev:web": "next",
"tools": "ts-node -TP server.tsconfig.json tools/gen-examples.ts",
"start": "node dist/index.js"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"dependencies": {
"@sentry/integrations": "^5.11.1",
"@sentry/node": "^5.11.1",
"badgen": "^3.0.1",
"badgen-icons": "^0.13.0",
"byte-size": "^6.2.0",
"cheerio": "^1.0.0-rc.3",
"chrome-webstore": "^1.3.0",
"date-fns": "^2.9.0",
"got": "^10.3.0",
"lodash.debounce": "^4.0.8",
"measurement-protocol": "0.0.2",
"micro": "^9.3.4",
"millify": "^3.1.3",
"my-way": "^2.0.0",
"original-url": "^1.2.3",
"react-debounce-render": "^5.0.0",
"semver": "^7.1.1",
"serve-handler": "^6.1.2",
"serve-marked": "^2.0.2",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@types/cheerio": "^0.22.15",
"@types/fs-extra": "^8.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/micro": "^7.3.3",
"@types/node": "^12.12.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/semver": "^6.2.0",
"@types/supertest": "^2.0.8",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"@zeit/next-typescript": "^1.1.1",
"csstype": "^2.6.8",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.0",
"fs-extra": "^8.1.0",
"next": "^9.2.0",
"nodemon": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"supertest": "^4.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"engines": {
"node": "12.x"
}
}