-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "general-admission",
"version": "0.1.0",
"description": "Audius frontend gateway for proxying traffic",
"main": "index.js",
"scripts": {
"clean": "rimraf build/",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.png src/**/*.jpg src/**/*.ico src/**/*.svg build/src",
"tsc": "tsc",
"spinup": "nodemon src/index.ts",
"start": "env-cmd -f .env npm run spinup",
"start:stage": "env-cmd -f .env.stage npm run spinup",
"start:prod": "env-cmd -f .env.prod npm run spinup",
"start:build": "env-cmd -f .env node build/src/index.js",
"lint": "./node_modules/.bin/tslint 'src/**/*.ts'",
"lint:fix": "./node_modules/.bin/tslint 'src/**/*.ts' --fix",
"test:stage": "env-cmd -f .env.stage jest",
"test:prod": "env-cmd -f .env.prod jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudiusProject/general-admission.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AudiusProject/general-admission/issues"
},
"homepage": "https://github.com/AudiusProject/general-admission#readme",
"dependencies": {
"@audius/fetch-nft": "0.1.8",
"@audius/sdk": "3.0.11-beta.9",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "1.37.1",
"abort-controller": "3.0.0",
"cors": "2.8.5",
"ethereumjs-tx": "2.1.2",
"express": "4.17.1",
"handlebars": "4.7.7",
"hashids": "2.2.9",
"ipfs-http-client": "43.0.0",
"moment": "2.29.1",
"node-fetch": "2.6.6",
"request-promise": "4.2.6",
"unzipper": "0.10.11"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@types/node-fetch": "^2.5.8",
"@types/request": "^2.48.2",
"@types/request-promise": "^4.1.48",
"@types/semver": "^7.3.13",
"@types/unzipper": "^0.10.3",
"copyfiles": "^2.4.1",
"env-cmd": "^9.0.3",
"jest": "^24.8.0",
"nodemon": "^2.0.13",
"request": "^2.88.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.2",
"ts-lint": "^4.5.1",
"ts-node": "^10.4.1",
"typescript": "4.6.2"
}
}