-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "traderu",
"version": "0.1.0",
"private": true,
"description": "Stock and cryptocurrency trading simulator",
"main": "./server/dist/server.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lerna-install": "npx lerna bootstrap",
"build": "npx lerna run build",
"start": "node ./server/dist/server.js",
"dev": "cross-env BUILD_ENV=test nodemon ./server/dist/server.js",
"ts": "npx lerna run ts",
"test": "cross-env BUILD_ENV=test lerna run test",
"migrate:test-db": "cross-env BUILD_ENV=test node ./server/dist/db/reset.js",
"migrate:prod-db": "cross-env BUILD_ENV=production node ./server/dist/db/reset.js",
"jsdoc": "npx lerna run jsdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryce-mcmath/traderu.git"
},
"author": "Jonathan Langlois, Wilson Wong, Bryce McMath",
"license": "ISC",
"bugs": {
"url": "https://github.com/bryce-mcmath/traderu/issues"
},
"homepage": "https://traderu.io",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"cross-env": "^7.0.2",
"lerna": "^3.20.2",
"nodemon": "^2.0.2"
},
"dependencies": {}
}