-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "chainspec",
"version": "1.0.0",
"description": "Spec-First Smart Contract Development Framework",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"parse": "tsx src/parser/test-parser.ts",
"dev:all": "start-chainspec.bat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebanditssss/chainspec.git"
},
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"security",
"audit",
"kiro"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codebanditssss/chainspec/issues"
},
"homepage": "https://github.com/codebanditssss/chainspec#readme",
"dependencies": {
"@prisma/client": "^6.19.1",
"autoprefixer": "^10.4.23",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"concurrently": "^9.2.1",
"prisma": "^6.19.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}