-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "pp-validation-rules",
"version": "0.0.1",
"description": "validation rules",
"main": "index.ts",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "jest",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "Simon Leigh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/ramda": "^0.25.50",
"gts": "^0.9.0",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"./tests"
]
},
"dependencies": {
"redux": "^4.0.1",
"result-te": "^0.1.6"
}
}