-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "tokencreator.santiago.delvalle",
"version": "1.0.0",
"description": "Interface to launch an ERC20 token based on the Open Zeppelin Framework",
"main": "index.js",
"dependencies": {
"ethereum-blockies-base64": "^1.0.2",
"gulp": "^3.9.1",
"next": "^6.1.1",
"next-routes": "^1.4.2",
"numeral": "^2.0.6",
"react": "^16.4.2",
"react-center": "^1.1.1",
"react-dom": "^16.4.2",
"react-favicon": "0.0.14",
"require-dot-file": "^0.4.0",
"semantic-ui-react": "^0.80.2",
"truffle": "^4.1.13",
"truffle-hdwallet-provider-privkey": "^0.2.0",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"semantic-ui": "^2.3.3"
},
"scripts": {
"test": "mocha",
"dev": "npm run build-semantic && next build && node server.js",
"dev_simple": "node server.js",
"stage": "next build && NODE_ENV=production node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"build-semantic": "cd static && gulp build-css build-assets",
"watch-semantic": "cd static && npm run build-semantic && gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdelvalle57/token_creation.git"
},
"keywords": [
"token",
"erc20",
"openzeppelin"
],
"author": "Santiago Del Valle",
"license": "ISC",
"bugs": {
"url": "https://github.com/sdelvalle57/token_creation/issues"
},
"homepage": "https://github.com/sdelvalle57/token_creation#readme"
}