-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.7 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
{
"name": "nomad-api",
"version": "0.9.6",
"description": "",
"main": "index.js",
"scripts": {
"build-indexer-api": "webpack --config ./webpack.config.js --inline",
"watch-indexer-api": "NODE_ENV=development webpack --config ./webpack.config.js --inline --watch",
"nodemon-indexer-api": "nodemon ./build/index.js",
"build-lib": "tsc -p ./tsconfig.lib.json",
"postbuild-lib": "cp -r ./lib/src/ ./lib/ && rm -rf ./lib/src/ && rm ./lib/config.json",
"dev": "concurrently --kill-others-on-fail npm:watch-indexer-api npm:nodemon-indexer-api",
"dev-doc": "webpack-dev-server --config webpack.ui.config.js --hot --inline --port 8083",
"build-doc": "NODE_ENV=production webpack --config webpack.ui.config.js --inline",
"start": "NODE_ENV=production npm run build-indexer-api && node ./build/index.js"
},
"author": "Kyokan Group, Inc.",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/better-sqlite3": "^5.4.1",
"@types/cors": "^2.8.6",
"@types/create-torrent": "^4.4.0",
"@types/crypto-js": "^3.1.43",
"@types/dompurify": "^2.0.1",
"@types/express": "^4.17.2",
"@types/marked": "^0.7.3",
"@types/multer": "^1.4.5",
"@types/node": "12.12.21",
"@types/parse-torrent": "^5.8.3",
"@types/pg": "^7.14.3",
"@types/react": "^16.9.29",
"@types/react-dom": "^16.9.5",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"@types/redis": "^2.8.22",
"@types/ua-parser-js": "^0.7.35",
"@types/webtorrent": "^0.109.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"concurrently": "5.0.2",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.1",
"db-migrate": "^0.11.6",
"db-migrate-sqlite3": "^0.4.0",
"dompurify": "^2.0.8",
"eslint": "^5.16.0",
"file-loader": "^5.0.2",
"highlight.js": "^9.18.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"marked": "^0.8.2",
"node-loader": "^0.6.0",
"node-sass": "^4.13.0",
"nodemon": "^2.0.2",
"raw-loader": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"swagger-ui-express": "^4.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@dicebear/avatars": "^4.0.5",
"@dicebear/avatars-avataaars-sprites": "^4.0.5",
"@dicebear/avatars-bottts-sprites": "^4.0.5",
"@dicebear/avatars-gridy-sprites": "^4.0.5",
"@dicebear/avatars-identicon-sprites": "^4.0.5",
"@dicebear/avatars-jdenticon-sprites": "^4.0.5",
"@dicebear/avatars-male-sprites": "^4.0.5",
"@types/secp256k1": "^4.0.1",
"bcrypt": "^4.0.1",
"better-sqlite3": "^5.4.3",
"binstring": "^0.2.1",
"bl": "^4.0.2",
"blake2b": "^2.1.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"create-torrent": "^4.4.2",
"crypto-js": "^3.1.9-1",
"eckey": "^1.0.0",
"elliptic": "^6.5.2",
"end-of-stream": "^1.4.1",
"express": "^4.17.1",
"fn-client": "^0.6.4",
"ipfs": "^0.46.0",
"isomorphic-fetch": "^2.2.1",
"link-preview-js": "^2.0.5",
"matomo-tracker": "^2.2.1",
"mixpanel": "^0.13.0",
"multer": "^1.4.2",
"parse-torrent": "^9.1.0",
"pg": "^8.2.1",
"request-ip": "^2.1.3",
"secp256k1": "^3.7.1",
"secure-random": "^1.1.2",
"ua-parser-js": "^0.7.23",
"webtorrent": "^0.112.0",
"webtorrent-hybrid": "^4.0.3",
"winston": "^3.2.1"
},
"files": [
"lib/**/*"
]
}