-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2 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
77
78
79
80
81
82
83
84
{
"name": "razzle-plugin-pwa",
"version": "2.2.3",
"description": "Create Progressive Web App with Razzle",
"main": "dist/index.js",
"repository": "git@github.com:rhodee/razzle-plugin-pwa.git",
"author": "Denis Rhoden <info@rhodee.us>",
"license": "MIT",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"test": "jest",
"lint-staged": "lint-staged",
"lint": "tslint --fix",
"prebuild": "npm run clean",
"precommit": "lint-staged",
"prerelease": "npm run build",
"release": "git add . && standard-version -a"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
},
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/__tests__/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testPathIgnorePatterns": [
"<rootDir>/testdata"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --trailing-comma none --single-quote --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"razzle": "^2.2.0",
"webpack": "^4.12.0",
"webpack-pwa-manifest": "^3.6.2",
"workbox-webpack-plugin": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"@types/webpack": "^4.4.1",
"@types/webpack-env": "^1.13.6",
"concurrently": "^3.5.1",
"husky": "0.14.3",
"jest": "^23.1.0",
"lint-staged": "4.0.2",
"prettier": "^1.13.5",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"ts-jest": "^22.4.6",
"ts-node": "^6.1.1",
"tslib": "^1.9.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.2"
},
"peerDependencies": {
"typescript": ">=2.4.1"
}
}