This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
generated from majus/meteor-app-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "no-code-sol",
"author": {
"name": "Denis Perov",
"email": "[email protected]"
},
"private": true,
"scripts": {
"start": "meteor run --settings=settings.json --exclude-archs=web.browser.legacy,web.cordova --raw-logs",
"deploy": "meteor deploy nocodesol.meteorapp.com --settings=.env/settings.json --free --cache-build",
"settings": "meteor npx json-fmt .env/settings.json",
"preinstall": "git submodule update --init"
},
"dependencies": {
"@babel/runtime": "^7.24.1",
"@majus/eslint-config-meteor": "0.0.4",
"bootstrap": "^4.6.2",
"ethers": "^5.7.2",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"meteor-node-stubs": "^1.2.5",
"node-abort-controller": "^3.1.1",
"node-fetch": "^3.3.2",
"popper.js": "^1.16.1",
"sequential-workflow-designer": "^0.19.3",
"sequential-workflow-machine": "^0.5.2",
"sequential-workflow-model": "^0.2.0",
"simpl-schema": "^3.4.1",
"solc": "^0.8.25",
"solc-typed-ast": "^18.1.3"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@openzeppelin/contracts": "^5.0.2",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"json-fmt": "^1.1.2"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
}
}