-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
{
"name": "@dreebit/prisma-pro-simulation",
"version": "0.1.8",
"description": "Simulation Server for Prisma Pro",
"main": "dist/prisma-pro-simulation.umd.js",
"module": "dist/prisma-pro-simulation.es5.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "nodemon",
"start": "ts-node ./src/start.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "rollup -c",
"build:rollup": "tsc --module commonjs && rollup -c rollup.config.js",
"build:tsc": "rimraf dist && tsc",
"kill:port": "kill-port 5002",
"deploy": "npm publish",
"build:rollup:deploy": "yarn run build:rollup && npm version patch && yarn run deploy"
},
"keywords": [],
"author": "Toni Möckel",
"repository": {
"type": "git",
"url": "http://bitbucket.dreebitnet.local/projects/NM/repos/prisma-pro-api-simulation"
},
"license": "ISC",
"dependencies": {
"express-mock-server": "^2.0.1",
"glob": "^7.1.3",
"lowdb": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.19",
"jest": "^23.3.13",
"lodash.camelcase": "^4.3.0",
"nodemon": "^1.18.9",
"npm-run-all": "4.1.5",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-copy-glob": "^0.3.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-url": "^1.4.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"tslint": "^5.12.0",
"typescript": "^3.2.4"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/(build|tmp|node_modules)/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}