-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.45 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
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
{
"name": "swap",
"version": "1.0.0",
"description": "Swap",
"homepage": "https://github.com/pavelivanov/swap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pavelivanov/swap.git"
},
"main": "./bin/server",
"scripts": {
"test": "ava",
"clean": "rimraf build",
"d": "nodemon",
"dev": "npm i && nodemon",
"build": "npm run clean && cross-env NODE_ENV=production node ./bin/compile"
},
"dependencies": {
"alight": "^0.12.30",
"bigi": "^1.4.2",
"bitcoinjs-lib": "^3.3.2",
"font-awesome": "^4.7.0",
"ipfs-pubsub-room": "DaoCasino/ipfs-pubsub-room",
"js-sha256": "^0.9.0",
"js-sha3": "^0.7.0",
"lodash": "^4.17.5",
"log-with-style": "^0.3.0",
"navigo": "^7.1.1",
"notifyjs-browser": "^0.4.2",
"popper.js": "^1.13.0",
"superagent": "^3.8.2",
"web3": "^1.0.0-beta.31"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"ava": "^1.0.0-beta.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"chalk": "^2.3.1",
"compression-webpack-plugin": "^1.1.7",
"connect-history-api-fallback": "^1.5.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"debug": "^3.1.0",
"expose-loader": "^0.7.5",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.3.1",
"node-sass": "^4.7.2",
"nodemon": "^1.15.0",
"progress-bar-webpack-plugin": "^1.10.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"surge": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.2.0",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.5",
"webpack-dev-server": "^2.11.1",
"webpack-subresource-integrity": "^1.1.0-rc.4"
},
"ava": {
"files": [
"src/**/*.spec.js"
],
"require": [
"./bin/bootstrap.js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": false,
"babel": {
"testOptions": {
"babelrc": false
}
}
}
}