-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
93 lines (93 loc) · 2.57 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
{
"name": "stellar-dashboard",
"prettier": "@stellar/prettier-config",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "gulp",
"build": "gulp build",
"heroku-postbuild": "gulp build",
"lint:prettier": "prettier --config --write '**/*.js'",
"test": "DEV=true mocha -r ts-node/register './test/**/*.ts' --exit",
"start:backend": "UPDATE_DATA=true DEV=true ts-node backend/app.ts",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"prettier --write"
],
"./backend/*.ts": "eslint --cache"
},
"resolutions": {
"**/ua-parser-js": "0.7.28"
},
"author": "Stellar.org",
"dependencies": {
"@google-cloud/bigquery": "^5.10.0",
"@stellar/prettier-config": "^1.0.1",
"axios": "^0.19.0",
"babel-core": "^6.23.0",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"bignumber.js": "^9.0.1",
"bourbon": "^4.3.4",
"bourbon-neat": "^2.0.0",
"browser-sync": "^2.18.2",
"css-loader": "2.1.1",
"dompurify": "^2.2.6",
"dotenv": "^16.0.0",
"express": "^4.14.0",
"express-http-proxy": "^1.0.6",
"extract-text-webpack-plugin": "^0.7.0",
"fbemitter": "^2.1.1",
"file-loader": "^0.9.0",
"gulp": "^4.0.2",
"html-react-parser": "^1.2.4",
"json-loader": "^0.5.1",
"lodash": "^4.17.15",
"moment": "^2.17.1",
"morgan": "^1.8.2",
"muicss": "^0.9.5",
"node-sass": "^6.0.0",
"react": "^16.3.2",
"react-d3-components": "^0.9.1",
"react-dom": "^16.3.2",
"redis": "^4.0.1",
"sass-loader": "^6.0.6",
"stellar-sdk": "^2.0.0-beta.7",
"style-loader": "^0.19.0",
"typescript": "^4.5.4",
"webpack": "^1.13.3"
},
"devDependencies": {
"@stellar/eslint-config": "^2.1.2",
"@stellar/tsconfig": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": ">=6",
"lint-staged": ">=10",
"mocha": "^8.4.0",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"ts-node": "^10.4.0"
}
}