This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.45 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
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
122
123
124
125
126
127
128
{
"name": "ts-react-chrome-extension-boilerplate",
"description": "Boilerplate to create a chrome extension with TypeScript and React.",
"homepage": "https://github.com/kobanyan/ts-react-chrome-extension-boilerplate#readme",
"version": "0.1.0",
"main": "",
"author": {
"name": "kobanyan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobanyan/ts-react-chrome-extension-boilerplate.git"
},
"bugs": {
"url": "https://github.com/kobanyan/ts-react-chrome-extension-boilerplate/issues"
},
"keywords": [
"boilerplate",
"chrome",
"extension",
"react",
"typescript",
"webpack"
],
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-persist": "^5.9.1",
"typescript-fsa": "^2.5.0",
"typescript-fsa-reducers": "^0.4.5"
},
"devDependencies": {
"@types/chrome": "^0.0.60",
"@types/copy-webpack-plugin": "^4.4.0",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.2.0",
"@types/jsdom": "^11.0.4",
"@types/puppeteer": "^1.1.0",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^5.0.15",
"@types/react-test-renderer": "^16.0.1",
"@types/redux": "^3.6.0",
"@types/rimraf": "^2.0.2",
"@types/shelljs": "^0.7.8",
"@types/sinon": "^4.3.0",
"@types/sinon-chrome": "^2.2.1",
"@types/webpack": "^3.8.8",
"awesome-typescript-loader": "^4.0.1",
"bumped": "^0.10.9",
"bumped-finepack": "^0.2.9",
"bumped-terminal": "^0.7.3",
"circular-dependency-plugin": "^4.4.0",
"copy-webpack-plugin": "^4.4.3",
"crx": "^3.2.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gts": "^0.5.4",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.2",
"jest-puppeteer": "^2.2.0",
"jsdom": "^11.6.2",
"lint-staged": "^7.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"puppeteer": "^1.1.1",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.1",
"shelljs": "^0.8.1",
"sinon": "^4.4.2",
"sinon-chrome": "^2.3.1",
"source-map-loader": "^0.2.1",
"ts-jest": "^22.4.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.0",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2",
"unused-files-webpack-plugin": "^3.2.0",
"webpack": "^3.8.1"
},
"scripts": {
"dev": "npm-run-all --parallel start test-watch",
"e2e": "jest --testRegex '\\.spec\\.tsx?$' --preset 'jest-puppeteer'",
"prod": "ts-node ./scripts/prod.ts",
"start": "ts-node ./scripts/dev.ts",
"test": "jest --collectCoverage --testRegex '\\.test\\.tsx?$' --setupTestFrameworkScriptFile './__setup__/testSetup.ts'",
"test-watch": "jest --watch --testRegex '\\.test\\.tsx?$' --setupTestFrameworkScriptFile './__setup__/testSetup.ts'"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts?(x)"
],
"coveragePathIgnorePatterns": [
"/__tests__/"
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"ts",
"tsx"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
],
"*.json": [
"prettier --parser json --write",
"git add"
]
}
}