-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "blargf",
"version": "2.0.0",
"description": "My personal new tab page",
"main": "build/main.js",
"scripts": {
"start": "node ./dist/main.js",
"dev": "npm run build && npm start",
"build": "parcel build",
"test": "npm run test:type-check && npm run lint",
"lint": "eslint src --ext ts,tsx",
"test:type-check": "tsc --noEmit",
"test:type-check:watch": "npm run test:type-check -- --watch"
},
"keywords": [],
"author": "Deseteral <github.com/deseteral>",
"license": "MIT",
"dependencies": {
"clsx": "1.1.1",
"compression": "1.7.4",
"date-fns": "1.30.1",
"duration": "0.2.2",
"express": "4.17.1",
"nanoid": "3.1.30",
"node-fetch": "2.6.5",
"node-ical": "0.13.0",
"number-to-words": "1.2.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"shuffle-array": "1.0.1",
"signale": "1.4.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@deseteral/eslint-config": "5.1.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/node-fetch": "2.5.12",
"@types/number-to-words": "1.2.1",
"@types/react": "17.0.33",
"@types/react-dom": "17.0.10",
"@types/shuffle-array": "1.0.2",
"@types/signale": "1.4.2",
"@types/styled-components": "5.1.15",
"eslint": "7.32.0",
"parcel": "2.0.0",
"process": "0.11.10",
"typescript": "4.4.4"
},
"targets": {
"frontend": {
"source": "src/static/code.ts",
"context": "browser",
"distDir": "dist/static/"
},
"service": {
"source": "src/main.ts",
"context": "node",
"distDir": "dist/"
}
}
}