-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "bars",
"version": "1.0.0",
"main": "dist/bars.js",
"module": "src/index.tsx",
"repository": "https://github.com/rolule/bars.git",
"author": "Robin Luley",
"license": "MIT",
"private": true,
"type": "commonjs",
"bin": "dist/bars.js",
"scripts": {
"start": "build/bars-dev.js",
"clean": "rm dist/bars.js",
"build": "webpack --mode production && chmod +x dist/bars.js",
"analyze": "ANALYZE=1 webpack --mode production",
"watch": "webpack --mode development --watch",
"build:ts": "yarn tsc && tsc-alias -p tsconfig.json",
"build:dev": "webpack --mode development && chmod +x build/bars-dev.js",
"watch:ts": "yarn tsc-watch"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"dotenv": "^10.0.0",
"ink": "^3.2.0",
"ink-link": "^2.0.0",
"node-fetch": "^3.0.0",
"react": "^17.0.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@types/node": "^16.10.3",
"@types/react": "^17.0.30",
"@types/webpack-bundle-analyzer": "^4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "2.4.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"tsc-alias": "^1.3.10",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0"
}
}