-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 KB
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
{
"name": "hypersamples",
"version": "0.1.0",
"description": "Working website with Hyperapp, TypeScript and Parcel",
"license": "MIT",
"author": "Felipe Hlibco <https://github.com/hlibco>",
"main": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"DEV__________________________________________": "",
"start": "yarn clean && parcel public/index.html --open",
"BUILD________________________________________": "",
"build": "yarn clean && env NODE_ENV=production parcel build --experimental-scope-hoisting --detailed-report --no-source-maps --public-url ./ ./public/index.html && cp ./public/*.txt ./dist",
"serve": "servor dist index.html 8080 --browse",
"check": "tsc",
"TEST_________________________________________": "",
"lint": "tslint --project . --format stylish",
"test": "jest --coverage --no-cache",
"test:watch": "jest --watch --maxWorkers=4",
"UTILS________________________________________": "",
"clean": "rm -rf dist .cache",
"format": "prettier --write **/*.{ts,json}"
},
"dependencies": {
"@hyperapp/events": "0.0.4",
"@hyperapp/http": "0.0.2",
"@hyperapp/time": "0.1.0",
"bulma": "0.9.0",
"hyperapp": "2.0.8",
"hyperlit": "0.3.5",
"hyperway": "git+https://git@github.com/hlibco/hyperway.git",
"json5": "2.1.3",
"picostyle": "2.2.0",
"rfdc": "1.1.4"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-transform-regenerator": "7.10.4",
"@babel/plugin-transform-runtime": "7.10.5",
"@babel/preset-env": "7.10.4",
"@types/jest": "26.0.7",
"@types/node": "14.0.26",
"babel-jest": "26.1.0",
"babel-plugin-hyperlit": "0.1.3",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"parcel-bundler": "1.12.4",
"prettier": "2.0.5",
"sass": "1.26.10",
"servor": "4.0.2",
"ts-jest": "26.1.3",
"ts-node": "8.10.2",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test && yearn build"
}
},
"lint-staged": {
"*.{js,ts}": [
"tslint --format stylish",
"yarn format",
"yarn test --bail --findRelatedTests",
"yearn build",
"git add"
],
"*.{json}": [
"yarn format",
"git add"
]
}
}