-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "personal-website",
"version": "0.1.0",
"private": true,
"typings": "all.d.ts",
"scripts": {
"start": "ts-node -e 'import { main } from \"./src/index\"; main()'",
"cmp": "yarn start ./example",
"tsvm": "./a.exe ./example/a.out",
"cr": "yarn cmp && yarn tsvm",
"build": "tsc src/index.ts",
"lint": "eslint . --no-ignore",
"lint:fix": "eslint . --no-ignore --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"lc":"find ./src/ -name '*.ts' | xargs wc -l"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-shopify": "^35.1.0",
"eslint-webpack-plugin": "^3.0.1",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"shopify": "^0.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.0"
},
"eslintConfig": {
"extends": []
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/glob": "^7.2.0",
"@types/ora": "^3.2.0",
"colors": "^1.4.0",
"glob": "^7.2.0",
"libcore-parser-lalr": "^0.2.2",
"ora": "^6.0.1"
}
}