-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "karbon14-demo",
"version": "1.0.0",
"description": "Karbon14 | Demo",
"scripts": {
"dev": "node server.js",
"dev:local": "NETWORK=5777 node server.js",
"dev:ropsten": "NETWORK=3 node server.js",
"dev:ropsten:mocked": "NETWORK=3 MOCKED=true node server.js",
"dev:rsk": "NETWORK=31 node server.js",
"dev:rsk:mocked": "NETWORK=31 MOCKED=true node server.js",
"build": "next build",
"build:ropsten": "NETWORK=3 next build",
"build:rsk": "NETWORK=31 next build",
"start": "NODE_ENV=production node server.js",
"start:ropsten": "NODE_ENV=production NETWORK=3 node server.js",
"start:rsk": "NODE_ENV=production NETWORK=31 node server.js",
"precommit": "lint-staged",
"migrate": "truffle migrate",
"truffle:compile": "rimraf build && truffle compile --verbose-rpc",
"truffle:test": "NODE_ENV=test truffle test",
"truffle:migrate": "truffle migrate",
"truffle:ropsten": "rimraf build && npm run migrate -- --network=ropsten",
"truffle:rsk": "rimraf build && npm run migrate -- --network=RSKtestnet",
"truffle:development": "rimraf build && npm run migrate -- --network=development",
"ganache": "ganache-cli",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --ext .js ./ --fix"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"npm test -- --lastCommit"
]
},
"keywords": [
"Karbon14"
],
"license": "MIT",
"dependencies": {
"@reactions/component": "2.0.2",
"@zeit/next-css": "1.0.2-canary.2",
"@zeit/next-sass": "1.0.2-canary.2",
"classnames": "2.2.6",
"ethereumjs-util": "6.0.0",
"express": "4.16.4",
"file-saver": "2.0.0",
"font-awesome": "4.7.0",
"formik": "1.4.1",
"ipfs-api": "26.1.2",
"isomorphic-fetch": "2.2.1",
"isomorphic-unfetch": "3.0.0",
"lodash": "4.17.11",
"moment": "2.23.0",
"next": "7.0.2",
"next-compose-plugins": "^2.1.1",
"next-fonts": "0.16.0",
"next-images": "1.0.4",
"normalize.css": "8.0.1",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-adopt": "0.6.0",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "16.7.0",
"react-html-parser": "2.0.2",
"react-toastify": "4.5.2",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0",
"styled-jsx": "3.1.3",
"yup": "0.26.6"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/helper-plugin-utils": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"babel-eslint": "10.0.1",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-define-file": "1.3.2",
"eslint": "5.12.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.3",
"ganache-cli": "6.2.5",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"node-sass": "4.11.0",
"prettier": "1.15.3",
"truffle": "5.0.1",
"truffle-hdwallet-provider": "1.0.2"
}
}