This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
123 lines (123 loc) · 3.3 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "blockstack-explorer",
"scripts": {
"prod": "NODE_ENV=production node server",
"dev": "node server",
"build": "next build",
"start": "node server",
"format": "prettier --write \"{,!(node_modules|.next|out)/**/}*.{js,jsx,md,mdx}\" && echo -e '\\033[0;32m'💅 Just use prettier'\\033[0m'",
"heroku-postbuild": "next build"
},
"engines": {
"node": ">10.15"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git",
[
"semantic-release-slack-bot",
{
"notifyOnSuccess": true,
"notifyOnFail": true,
"markdownReleaseNotes": true
}
]
]
},
"dependencies": {
"@awaitjs/express": "^0.1.4",
"@promster/express": "^3.4.1",
"@promster/server": "^3.4.1",
"@zeit/next-css": "^1.0.1",
"babel-plugin-styled-components": "^1.10.6",
"bignumber.js": "^9.0.0",
"blockstack-ui": "^0.0.40",
"c32check": "^1.0.1",
"chart.js": "^2.7.3",
"connect": "^3.6.6",
"cookie-session": "^2.0.0-beta.3",
"cross-fetch": "^2.2.3",
"dotenv": "^6.1.0",
"express": "^4.17.1",
"express-force-https": "^1.0.0",
"fs-extra": "^7.0.0",
"hoist-non-react-statics": "^3.0.1",
"idx": "^2.4.0",
"immer": "^1.7.4",
"lru-cache": "^4.1.3",
"mdi-react": "^4.4.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"morgan": "^1.9.1",
"next": "^9.3.6",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"papaparse": "^4.6.0",
"polished": "^2.2.0",
"prom-client": "^11.5.3",
"prop-types": "^15.6.2",
"qrcode.react": "^0.8.0",
"react": "^16.12.0",
"react-chartjs-2": "^2.7.4",
"react-datepicker": "^1.7.0",
"react-dom": "^16.12.0",
"react-powerplug": "^1.0.0-rc.1",
"react-timeago": "^4.1.9",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"styled-components": "^5.0.0",
"styled-system": "^3.1.11",
"system-components": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/express": "^4.17.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-define": "^2.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"eslint-scope": "^4.0.0",
"husky": "^4.2.5",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
".next/*",
".next",
"pages/*",
"components/*",
"styled/*",
"common/*",
"containers/*",
"serenity-develop/*"
]
}
}