-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 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
58
59
60
61
62
63
64
{
"name": "coinbase-lite",
"version": "0.0.9",
"packageManager": "yarn@4.6.0",
"description": "Coin App",
"scripts": {
"lint": "eslint src --ext .ts,.tsx",
"format": "npm run lint --fix",
"test:type": "tsc",
"start": "anansi serve --dev ./src/index.tsx",
"start:server": "anansi serve ./dist-server/App.js -a",
"build": "webpack --mode=production",
"build:server": "webpack --mode=production --target=node --env entrypath=index.server.tsx",
"build:analyze": "webpack --mode=production --env analyze",
"build:profile": "webpack --mode=production --env profile",
"test:pkg": "webpack --env check=nobuild",
"postinstall": "rm -rf node_modules/.cache"
},
"engines": {
"node": ">=18.0"
},
"browserslist": "extends @anansi/browserslist-config",
"keywords": [
"anansi"
],
"devDependencies": {
"@anansi/babel-preset": "^6.1.6",
"@anansi/browserslist-config": "^1.4.3",
"@anansi/webpack-config": "^20.0.0",
"@babel/core": "^7.22.15",
"@linaria/babel-preset": "*",
"@linaria/core": "*",
"@linaria/react": "*",
"@linaria/shaker": "*",
"@types/d3": "^7",
"@types/react": "*",
"@types/react-dom": "*",
"react-refresh": "*",
"typescript": "5.7.3",
"webpack": "*",
"webpack-cli": "*"
},
"dependencies": {
"@anansi/cli": "^3.0.15",
"@anansi/core": "^0.20.0",
"@anansi/router": "^0.10.0",
"@babel/runtime-corejs3": "^7.26.7",
"@data-client/img": "^0.14.0",
"@data-client/react": "^0.14.0",
"@data-client/rest": "^0.14.0",
"core-js": "^3.40.0",
"d3": "^7.9.0",
"history": "*",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"main": "src/index.ts",
"types": "src/index.ts",
"private": true,
"license": "MIT",
"resolutions": {
"react-error-overlay": "6.0.9"
}
}