-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "arodic.github.com",
"version": "1.0.11",
"description": "Personal Website of Aki Rodic",
"main": "build/index.js",
"module": "build/index.js",
"typings": "build/index.d.ts",
"type": "module",
"files": [
"/src/",
"/build/",
"/docs/",
"/CNAME",
"/robots.txt",
"/manifest.json",
"/index.html"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf build && rm -rf bundle",
"lint": "eslint src --fix",
"build": "yarn clean && yarn lint && tsc && rollup -c && rm -rf build && mv bundle build",
"dev": "yarn clean && yarn lint && tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arodic/arodic.github.com.git"
},
"author": "Aki Rodic",
"license": "ISC",
"bugs": {
"url": "https://github.com/arodic/arodic.github.com/issues"
},
"homepage": "https://akirodic.com",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/gtag.js": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-html": "^7.1.0",
"io-gui": "1.4.0-rc6",
"rollup": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}