-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 892 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 892 Bytes
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
{
"name": "bca-ksm-svc",
"version": "1.0.0",
"description": "Blockchain.art IPFS & Kusama Service",
"main": "src/index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"prettier": "prettier -w ."
},
"prettier": {
"printWidth": 120,
"proseWrap": "always"
},
"private": true,
"dependencies": {
"@pinata/sdk": "1.1.23",
"@polkadot/api": "4.14.1",
"@polkadot/keyring": "6.8.1",
"@polkadot/util": "6.8.1",
"@polkadot/util-crypto": "6.8.1",
"@sentry/node": "6.15.0",
"@sentry/tracing": "6.15.0",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"express-validator": "6.13.0",
"is-ipfs": "6.0.2",
"morgan": "1.10.0",
"multer": "1.4.3"
},
"devDependencies": {
"nodemon": "2.0.15",
"prettier": "2.5.0"
},
"engines": {
"node": "16.13.0"
}
}