-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"name": "me",
"version": "1.0.0",
"description": "me",
"author": "Artur Kurowski",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prestart:prod": "rimraf dist && tsc",
"push:lazy": "git add . && git commit -m 'fix' && git push",
"start": "npm run start:dev",
"start:dashboard": "nodejs-dashboard node dist/main.js",
"start:debug": "nodemon --config nodemon-debug.json",
"start:dev": "nodemon --config nodemon-dev.json",
"start:hmr": "node dist/server",
"start:once": "ts-node -r tsconfig-paths/register src/main.ts",
"start:prod": "node dist/main.js",
"start:trace": "nodemon --config nodemon-trace.json",
"start:type": "typewiz-node src/main.ts",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:watch": "jest --watch",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
},
"devDependencies": {
}
}