-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.62 KB
/
package.json
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
65
66
67
68
{
"name": "alem",
"description": "Create web3 applications for NEAR BOS with a focus on performance and friendly development.",
"version": "1.3.1",
"main": "main.js",
"types": "index.d.ts",
"author": "Wenderson Pires - wendersonpires.near",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wpdas/near-react.git"
},
"keywords": [
"near",
"bos",
"alem",
"nearprotocol"
],
"bin": {
"alem": "./bin/alem"
},
"files": [
"bin",
"lib",
"main.js",
"gateway/dist/*",
"index.d.ts",
"plugins"
],
"scripts": {
"build-gateway": "cd ./gateway && npm install && npm run build",
"test": "jest",
"format": "prettier --write .",
"lint": "eslint .",
"prepublishOnly": "npm run build-gateway"
},
"dependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"autoprefixer": "^10.4.19",
"bos-cli": "^0.3.6",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"cssnano": "^7.0.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"lodash": "^4.17.21",
"mock-fs": "^5.2.0",
"near-cli-rs": "^0.4.3",
"node-html-parser": "^6.1.12",
"postcss": "^8.4.38",
"postcss-nested": "^6.0.1",
"prettier": "^3.1.0",
"socket.io": "^4.7.2",
"sucrase": "^3.34.0",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"eslint": "^8.53.0",
"jest": "^29.7.0"
}
}