-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "todo-app",
"version": "0.2.24",
"description": "todo-app - A reactive data client example",
"scripts": {
"lint": "yarn g:lint src --ext .ts,.tsx",
"format": "run lint --fix",
"test:type": "tsc",
"start": "webpack serve --mode=development",
"start:prod": "yarn dlx serve dist",
"build:browser": "webpack --mode=production",
"build:analyze": "webpack --mode=production --env analyze",
"build:profile": "webpack --mode=production --env profile",
"test:pkg": "webpack --env check=nobuild"
},
"engines": {
"node": ">=22.0.0"
},
"stackblitz": {
"startCommand": "npm start"
},
"browserslist": "extends @anansi/browserslist-config",
"keywords": [
"anansi"
],
"main": "src/index.ts",
"types": "src/index.ts",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@anansi/babel-preset": "6.2.26",
"@anansi/browserslist-config": "1.7.4",
"@anansi/webpack-config": "21.1.18",
"@babel/core": "7.29.6",
"@linaria/core": "6.3.0",
"@linaria/react": "6.3.0",
"@linaria/shaker": "5.0.3",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@types/uuid": "^11.0.0",
"react-refresh": "0.18.0",
"webpack": "5.106.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.4"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.26.7",
"@data-client/endpoint": "0.18.0",
"@data-client/react": "0.18.1",
"@data-client/rest": "0.18.1",
"core-js": "^3.40.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uuid": "^14.0.0"
}
}