-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.88 KB
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
{
"name": "react-lib",
"version": "0.0.0",
"description": "",
"main": "./dist/react-lib",
"scripts": {
"test": "node_modules/mocha/bin/mocha src/*.spec.ts src/**/*.spec.ts src/**/**/*.spec.ts src/**/**/**/*.spec.ts src/**/**/**/**/*.spec.ts --recursive true --require node_modules/ts-node/register --exit",
"test:watch": "npm run test -- --watch-extensions ts,spec.ts --watch",
"coverage": "node node_modules/nyc/bin/nyc.js --exclude '**/*.spec.ts' --exclude 'src/config.ts' --extension .ts --reporter lcov --reporter text npm run test",
"start": "./node_modules/.bin/nodemon -q --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --delay 250ms --exec 'npm run build && node $npm_package_main' src/index.ts",
"build": "npm run clean && node ./node_modules/.bin/webpack --mode production && chmod +x $npm_package_main",
"tsc": "npm run clean && node node_modules/typescript/bin/tsc --p tsconfig.json",
"clean": "rm -rf dist",
"lint": "node node_modules/tslint/bin/tslint -c tslint.json \"src/**/*.ts\"",
"docs": "node node_modules/typedoc/bin/typedoc --out docs/ src/ && echo '*\n!.gitignore' > docs/.gitignore",
"migration:up": "npm run tsc && ./node_modules/.bin/typeorm migration:run",
"migration:down": "npm run tsc && ./node_modules/.bin/typeorm migration:revert"
},
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.13",
"rxjs": "^5.4.3",
"tsnode-di": "0.0.3"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.34",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"npm-run-parallel": "^0.6.0",
"nyc": "^11.2.1",
"ts-loader": "^6.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typedoc": "^0.15.0",
"typescript": "^3.7.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}