This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.88 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
{
"name": "unip-tcc",
"version": "1.0.0",
"description": "Cryptocurrency exchange",
"scripts": {
"start": "concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:sapper\"",
"start:server": "node build/main_server/index.js",
"start:sapper": "npm start --prefix ./build/sapper",
"start:nano": "npm start --prefix ./build/external_modules/nano",
"start:bitcoin": "npm start --prefix ./build/external_modules/bitcoin",
"test": "env-cmd -f ./cfg/custom.env --silent env-cmd -f ./cfg/test.env mocha tests/",
"dev": "npm run eslint && concurrently --kill-others-on-fail \"npm run dev-server\" \"npm run dev-client\"",
"dev-server": "env-cmd -f ./cfg/custom.env --silent nodemon src/index.ts --inspect",
"dev-client": "npm run dev --prefix ./client",
"dep-install": "npm install && npm-recursive-install --rootDir=client && npm-recursive-install --rootDir=external_modules",
"eslint": "eslint . --ext .js,.ts",
"eslint-fix": "eslint --fix . --ext .js,.ts",
"build": "npm run eslint && npm run build:clean && npm run build:server && npm run build:svelte && npm run build:restruct && npm run build:config",
"build:clean": "del-cli ./build",
"build:server": "tsc --build",
"build:svelte": "npm run build --prefix ./client",
"build:restruct": "move-cli ./build/src ./build/main_server && move-cli ./client/__sapper__/build ./build/sapper",
"build:config": "copyfiles -E external_modules/**/package* build/ && copyfiles -E package* build/main_server/",
"build:dep-install": "npm-recursive-install --rootDir=build --production"
},
"author": "",
"license": "ISC",
"dependencies": {
"currency.js": "^2.0.3",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"js-sha512": "^0.8.0",
"loglevel": "^1.7.0",
"mongoose": "^5.10.9",
"multicoin-address-validator": "^0.4.8",
"randomstring": "^1.1.5",
"socket.io": "^2.3.0",
"socket.io-stream": "^0.9.1"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/mongoose": "^5.10.3",
"@types/node": "^12.12.67",
"@types/randomstring": "^1.1.6",
"@types/sinon": "^9.0.8",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.34",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.0",
"del-cli": "^3.0.1",
"eslint": "^7.11.0",
"mocha": "^8.1.3",
"move-cli": "^1.2.1",
"nodemon": "^2.0.6",
"recursive-install": "^1.4.0",
"sinon": "^9.2.0",
"socket.io-client": "^2.3.1",
"supertest": "^5.0.0",
"ts-mock-imports": "^1.3.0",
"ts-node": "^9.1.1",
"typed-emitter": "^1.3.1",
"typescript": "^4.0.3"
}
}