-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.73 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
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
{
"private": true,
"version": "0.0.2",
"scripts": {
"jest": "./node_modules/.bin/jest",
"lint": "tslint ./packages/**/src/**/*.ts --exclude \"./packages/**/node_modules/**/*.ts\"",
"lerna": "lerna bootstrap --hoist",
"install": "npm run lerna",
"watch": "lerna exec --no-sort --ignore *server --stream --parallel -- webpack --watch",
"build": "npm run build:packages",
"build:packages": "lerna run build --ignore *server",
"build:packages:watch": "lerna run build:lib:watch --ignore *server --stream",
"prebootstrap": "npm install",
"test": "jest",
"posttest": "npm run lint",
"coverage": "jest --coverage",
"pretravis": "npm run build",
"travis": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace ./test/tests.js",
"posttravis": "npm run lint",
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
"check-updates": "lerna exec ./node_modules/.bin/npm-check-updates -- -u"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"lib"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*test*\\.(ts|tsx|js)$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdmbase/fullstack-pro.git"
},
"author": "CDMBase LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdmbase/fullstack-pro/issues"
},
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "^20.0.2",
"@types/knex": "0.0.55",
"@types/minimist": "^1.2.0",
"@types/mongoose": "^4.7.18",
"@types/node": "^8.0.5",
"@types/sequelize": "^4.0.62",
"@types/sinon": "^2.2.1",
"@types/sqlite3": "^3.1.0",
"@types/webpack": "^3.0.1",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.1.3",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"enzyme": "^2.8.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"istanbul": "1.0.0-alpha.2",
"jest": "^20.0.3",
"jest-cli": "^20.0.3",
"jest-mock-knex": "^1.4.2",
"json-loader": "^0.5.4",
"lerna": "2.0.0-rc.5",
"lodash": "^4.17.4",
"minilog": "^3.1.0",
"mkdirp": "^0.5.1",
"mongoose": "^4.11.0",
"npm-check-updates": "^2.10.5",
"raw-loader": "^0.5.1",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"sequelize": "^4.2.1",
"sinon": "^2.2.0",
"sinon-as-promised": "^4.0.3",
"source-map-loader": "^0.2.1",
"standard-version": "^4.0.0",
"ts-jest": "^20.0.4",
"ts-loader": "^2.0.3",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.2",
"typescript-require": "^0.2.9-1",
"wait-on": "^2.0.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.5",
"webpack-fail-plugin": "^1.0.6",
"webpack-manifest-plugin": "^1.1.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0",
"webpack-sources": "^1.0.1",
"webpack-virtual-modules": "^0.1.5",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@cdm-logger/server": "^3.0.1",
"bunyan": "^1.8.10",
"export-dir": "^0.1.2",
"inversify": "^4.1.0",
"knex": "^0.13.0",
"mongodb-uri": "^0.9.7",
"morgan": "^1.8.1",
"mysql2": "^1.3.5",
"node-pre-gyp": "~0.6.31",
"objection": "^0.8.4",
"reflect-metadata": "^0.1.10",
"reselect": "^3.0.0",
"sqlite3": "^3.1.8"
}
}