-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 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
60
61
62
63
64
{
"name": "script-runner-dynamic",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"generate": "yarn ts-node ./src/generateFile.ts",
"build": "yarn ts-node ./src/generateFile.ts --projects=all --build",
"install:project": "./installProject.bash",
"build:project": "./buildProject.bash",
"check:projects": "yarn ts-node ./src/checkProjects.ts",
"run:api": "yarn ts-node ./server/src/index.ts",
"serve": "yarn http-server --cors -p 3000 ./build",
"select_test": "cd test && bash ./select_test.sh"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-es2015": "latest",
"@babel/preset-es2017": "latest",
"@babel/preset-stage-0": "^7.0.0",
"@babel/register": "^7.4.4",
"@ethereum-waffle/chai": "^3.4.4",
"@remix-project/plugin": "^0.3.44",
"@remix-project/plugin-iframe": "^0.3.44",
"@remix-project/plugin-utils": "^0.3.44",
"@types/cors": "^2.8.17",
"chai": "^4.3.6",
"constants-browserify": "^1.0.0",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"ffjavascript": "^0.2.62",
"https-browserify": "^1.0.0",
"md5": "^2.3.0",
"mocha": "^10.7.3",
"multihashes": "^4",
"net-browserify": "^0.2.4",
"node-polyfill-webpack-plugin": "^4.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"vm-browserify": "^1.1.2",
"web3": "^1.5.3",
"web3-validator": "^2.0.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/md5": "^2.3.5",
"express": "^4.21.0",
"ganache": "^7.9.2",
"http-server": "^14.1.1",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"yaml": "^2.5.1"
}
}