forked from particl/particl-market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 5.1 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "particl-marketplace",
"version": "0.0.1",
"description": "",
"main": "src/app.ts",
"scripts": {
"setup": "yarn install && npm run banner setup && npm run db:migrate && npm run db:seed",
"serve": "npm run banner serve && \"./node_modules/.bin/nodemon\" --watch src --watch .env",
"build": "npm run banner build && npm run lint && npm run clean:dist && npm run transpile && npm run copy:assets",
"start": "node dist/app.js",
"pretest": "./node_modules/.bin/tslint -c ./tslint.json -t stylish './test/unit/**/*.ts'",
"test": "npm run banner test && cross-env NODE_ENV=test \"./node_modules/.bin/jest\" --testPathPattern=unit",
"test:pretty": "npm run test -- --verbose",
"test:coverage": "npm run test -- --coverage",
"pretest:black-box": "./node_modules/.bin/tslint -c ./tslint.json -t stylish './test/black-box/**/*.ts'",
"test:black-box": "npm run banner test && cross-env NODE_ENV=test \"./node_modules/.bin/jest\" --testPathPattern=black-box -i",
"test:black-box:pretty": "npm run test:black-box -- --verbose",
"db:migrate": "npm run banner migrate && \"./node_modules/.bin/knex\" migrate:latest",
"db:migrate:rollback": "npm run banner rollback && \"./node_modules/.bin/knex\" migrate:rollback",
"db:seed": "npm run banner seed && \"./node_modules/.bin/knex\" seed:run",
"db:reset": "npm run console db:reset",
"console": "npm run ts-node:fast -- ./src/console/lib/console.ts",
"console:dev": "npm run ts-node -- ./src/console/lib/console.ts",
"console:help": "npm run ts-node:fast -- ./src/console/lib/console.ts --help",
"lint": "./node_modules/.bin/tslint -c ./tslint.json -p tsconfig.json 'src/**/*.ts' --format stylish",
"transpile": "./node_modules/.bin/tsc",
"clean": "npm run banner clean && npm run clean:dist",
"clean:dist": "./node_modules/.bin/trash './dist'",
"copy:assets": "npm run copy:swagger && npm run copy:public",
"copy:swagger": "./node_modules/.bin/copyup ./src/api/swagger.json ./dist",
"copy:public": "./node_modules/.bin/copyup ./src/public/* ./dist",
"banner": "npm run ts-node:fast -- ./src/console/lib/banner.ts",
"ts-node": "./node_modules/.bin/ts-node",
"ts-node:fast": "./node_modules/.bin/ts-node -F"
},
"repository": "git+ssh://git@github.com:xludx/dapp-shell.git",
"keywords": [
"particl"
],
"homepage": "https://github.com/w3tec/express-typescript-boilerplate#readme",
"author": "w3tec.ch <info@w3tec.ch>",
"contributors": [
{
"name": "David Weber",
"email": "david.weber@w3tec.ch",
"url": "https://github.com/dweber019"
},
{
"name": "Gery Hirschfeld",
"email": "gery.hirschfeld@w3tec.ch",
"url": "https://github.com/hirsch88"
}
],
"dependencies": {
"@types/bluebird": "^3.5.8",
"@types/body-parser": "^1.16.4",
"@types/bookshelf": "^0.9.3",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.9.1",
"@types/cors": "^2.8.1",
"@types/crypto-js": "^3.1.37",
"@types/dotenv": "^4.0.0",
"@types/express": "^4.0.36",
"@types/faker": "^4.1.0",
"@types/glob": "^5.0.30",
"@types/handlebars": "^4.0.33",
"@types/helmet": "0.0.35",
"@types/inquirer": "^0.0.35",
"@types/jest": "^20.0.2",
"@types/jsonwebtoken": "^7.2.2",
"@types/knex": "0.0.52",
"@types/lodash": "^4.14.68",
"@types/morgan": "^1.7.32",
"@types/pluralize": "^0.0.27",
"@types/reflect-metadata": "0.0.5",
"@types/request": "^0.0.45",
"@types/request-promise": "^4.1.36",
"@types/serve-favicon": "^2.2.28",
"@types/winston": "^2.3.3",
"body-parser": "^1.17.2",
"bookshelf": "^0.10.3",
"bookshelf-camelcase": "^1.1.4",
"chalk": "^2.0.1",
"class-validator": "^0.7.2",
"commander": "^2.11.0",
"compression": "^1.7.0",
"copyfiles": "^1.2.0",
"cors": "^2.8.1",
"crypto-js": "^3.1.9-1",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-status-monitor": "^0.1.9",
"faker": "^4.1.0",
"figlet": "^1.2.0",
"glob": "^7.1.2",
"handlebars": "^4.0.10",
"helmet": "^3.6.1",
"inquirer": "^3.2.0",
"inversify": "^4.2.0",
"inversify-express-utils": "^4.0.0",
"jsonwebtoken": "^7.4.1",
"knex": "^0.12.9",
"lodash": "^4.17.4",
"morgan": "^1.7.0",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"pluralize": "^5.0.0",
"reflect-metadata": "^0.1.10",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"serve-favicon": "^2.4.3",
"sqlite3": "^3.1.13",
"swagger-jsdoc": "^1.9.6",
"swagger-ui-express": "^2.0.1",
"trash-cli": "^1.4.0",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"winston": "^2.3.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/test/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/unit/lib/setup.ts"
},
"license": "GPL-2.0",
"devDependencies": {
"cross-env": "^5.0.1",
"jest": "^20.0.3",
"ts-jest": "^20.0.7"
}
}