-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.39 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": "timevault",
"version": "0.0.1",
"description": "A webapp to encrypt for the future using drand",
"scripts": {
"build": "parcel build ./src/index.html",
"build:githubpages": "parcel build ./src/index.html --public-url ./",
"build:ci": "npm run build && npm run lint && npm run check && npm run test",
"check": "tsc --noEmit",
"clean": "rm -rf ./dist/*",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "parcel ./src/index.html --public-url /",
"test": "mocha --require ts-node/register ./test/**/*.test.ts"
},
"author": "drand.love",
"license": "(Apache-2.0 OR MIT)",
"devDependencies": {
"@parcel/transformer-sass": "^2.7.0",
"@types/chai": "^4.3.1",
"@types/chai-string": "^1.4.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/mocha": "^9.1.1",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"eslint": "^8.19.0",
"isomorphic-fetch": "^3.0.0",
"mocha": "^10.0.0",
"parcel": "^2.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"bootstrap": "^5.2.0",
"preact": "^10.10.1",
"tlock-js": "^0.9.0",
"yup": "^0.32.11"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"engines": {
"node": ">= 16.0.0"
}
}