-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.62 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.62 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
{
"name": "web4-apps-specification",
"version": "1.0.0",
"description": "Web4 applications combine the potential of decentralized technologies and AI. At the intersection of these two innovative technologies, a standard is needed to leverage their combined advantages.",
"main": "index.js",
"scripts": {
"test:web4": "ts-node --project tsconfig.json test.ts",
"test:input": "jest input-data/test/*.test.ts",
"test:all": "npm run test:web4 && npm run test:input",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json}\"",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"build": "tsc --project tsconfig.json",
"prebuild": "npm run test:all && npm run lint:check && npm run format:check",
"build:input-data-site": "cd input-data/website && npx webpack --config webpack.config.js",
"serve:input-data-site": "npx serve dist/input-data/website -p 3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.2",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"serve": "^14.2.1",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"zod": "^3.24.2"
}
}