forked from waves-exchange/neutrino-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.98 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
{
"name": "neutrino",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --project tsconfig-node.json --log-error server.js --thread develop",
"serve-and-update": "ts-node --project tsconfig-node.json --log-error server.js --port 5001 --thread serve-and-update",
"serve": "ts-node --project tsconfig-node.json --log-error server.js --noupdate --thread main",
"dev": "node webpack",
"build": "node webpack production",
"next-dev": "next",
"next-build": "next build",
"next-start": "next start",
"next-export": "next export"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.7.4",
"@sentry/node": "5.7.0",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.147",
"@types/pg": "^7.14.1",
"@types/react-modal": "^3.10.0",
"@waves.exchange/provider-web": "^0.2.1",
"@waves.exchange/storage-provider": "^0.0.21",
"@waves/signer": "^0.1.2",
"@waves/waves-crypto": "^3.0.17",
"@waves/waves-transactions": "^3.25.0",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"dotenv": "^8.1.0",
"dotenv-webpack": "^1.7.0",
"lodash": "^4.17.15",
"next": "^9.1.4",
"next-transpile-modules": "^2.3.1",
"null-loader": "^3.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pg": "^7.18.1",
"raven": "^2.6.4",
"react-copy-to-clipboard": "^5.0.1",
"react-highcharts": "^16.0.2",
"react-modal": "^3.11.1",
"react-slick": "^0.25.2",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"svg-inline-loader": "^0.8.0",
"svg-inline-react": "^3.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"websocket": "^1.0.29",
"winston": "^3.2.1",
"yii-steroids": "^1.14.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"url-loader": "^3.0.0"
}
}