-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "@gifflar/core",
"version": "1.0.4-alpha",
"description": "",
"main": "index.js",
"bin": {
"gifflar": "bin/index.js"
},
"scripts": {
"compile": "babel src --extensions \".js,.ts\" --out-dir bin --copy-files --no-copy-ignored",
"build": "rm -rf bin && npm run compile && tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./bin",
"build-types": "rm -rf types && tsc --project tsconfig.types.json && tscpaths -p tsconfig.types.json -s ./src -o ./types",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"dev": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GifflarJS-Framework/core.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/GifflarJS-Framework/core.git/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/GifflarJS-Framework/core.git#readme",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/node": "^17.0.16",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"ganache": "^7.3.0",
"ts-node-dev": "1.1.8",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9",
"@gifflar/types": "1.0.0"
},
"dependencies": {
"@gifflar/solgen": "1.0.1-alpha",
"prompt-sync": "^4.2.0",
"reflect-metadata": "^0.1.13",
"solc": "0.5.17",
"ts-import": "^4.0.0-beta.6",
"tsyringe": "^4.6.0",
"typescript": "4.6.3"
}
}