-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "preact-ts-parcel",
"version": "1.2.0",
"description": "Preact + Typescript + Parcel Starter",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"lint": "lynt src/**/*.js --ignore tests/**/*.* --typescript --react",
"dev": "parcel ./src/index.html -p 4200",
"build": "rm -rf dist && parcel build ./src/index.html --public-url './'"
},
"keywords": [
"Typescript",
"Preact",
"Parcel"
],
"author": "Albert Alises",
"license": "MIT",
"dependencies": {
"preact": "^8.3.0",
"preact-bind-group": "^2.0.3",
"redux-zero": "^4.13.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/parcel-env": "0.0.0",
"jest": "^23.4.2",
"lynt": "^0.3.1",
"parcel-bundler": "^1.9.7",
"parcel-plugin-typescript": "^1.0.0",
"prettier": "^1.14.2",
"puppeteer": "^1.6.2",
"ts-jest": "^22.4.1",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}