-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "@adminide-stack/$module$-server",
"version": "0.0.1",
"description": "Sample core for higher packages to depend on",
"main": "lib/index.js",
"scripts": {
"jest": "./node_modules/.bin/jest",
"test": "cross-env ENV_FILE=../../config/test/test.env jest",
"test:debug": "npm test -- --runInBand",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"watch": "npm run build:lib:watch",
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rimraf lib",
"build:lib": "webpack",
"build:lib:watch": "npm run build:lib -- --watch"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"modulePaths": [
"node_modules"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*test*\\.(ts|tsx|js)$"
},
"author": "CDMBase LLC",
"license": "ISC",
"devDependencies": {
"apollo": "^2.9.0",
"cross-env": "^5.2.0",
"jest": "^22.4.2",
"rimraf": "^2.6.1",
"webpack": "4.41.2"
},
"typings": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"dependencies": {
}
}