forked from adhrinae/ts-react-parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "ts-react-parcel",
"version": "1.7.0",
"description": "Typescript with React, using parcel bundler",
"repository": {
"type": "git",
"url": "https://github.com/adhrinae/ts-react-parcel"
},
"author": "Ahn Dohyung",
"license": "MIT",
"main": "src/index.tsx",
"scripts": {
"develop": "concurrently -r \"npm:type-check:watch\" \"npm:start\"",
"start": "parcel ./src/index.html",
"build": "npm run type-check && parcel build ./src/index.html --public-url '/'",
"prettify": "prettier --write './src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify && npm run test"
}
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 6.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/config/test-preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
]
},
"keywords": [
"Typescript",
"React",
"Parcel"
],
"dependencies": {
"helpful-decorators": "^1.7.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"concurrently": "^4.0.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.14.3",
"react-test-renderer": "^16.5.2",
"react-testing-library": "^5.2.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3"
}
}