forked from decentraland/nft-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "nft-server",
"version": "1.0.0",
"description": "NFT server",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"build": "tsc -p tsconfig.json",
"watch:build": "tsc -p tsconfig.json --watch",
"start": "npm run build && node ./dist",
"debug": "npm run build && node --inspect ./dist",
"start:watch": "nodemon src/index.ts",
"migrate": "ts-node migrations/index.ts",
"test": "exit 0"
},
"keywords": [
"decentraland"
],
"author": "Decentraland",
"license": "Apache-2.0",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@dcl/schemas": "^1.1.0",
"@types/sqlite3": "^3.1.7",
"@well-known-components/env-config-provider": "^1.0.0",
"@well-known-components/http-server": "^1.0.0",
"@well-known-components/interfaces": "^1.0.0",
"@well-known-components/logger": "^1.0.0",
"ajv": "^7.1.1",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link-http": "^1.5.17",
"dotenv": "^8.2.0",
"fp-future": "^1.0.1",
"graphql": "^15.5.0",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^2.6.1",
"sql-template-strings": "^2.2.2",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^14.14.28",
"dcl-tslint-config-standard": "^2.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-plugin-prettier": "^2.3.0"
}
}