-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.79 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.79 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
{
"name": "@polymathnetwork/offchain",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=8.9"
},
"scripts": {
"start": "node -r ./babel.register.js src/server.js",
"test": "echo \"Offchain tests disabled until the repo is moved to Typescript\"",
"start:dist": "node ./build/server.js",
"build": "yarn build:shared && yarn build:artifacts && babel --root-mode upward --ignore /node_modules/ src --out-dir build",
"build:shared": "rm -rf ../polymath-shared/build && babel --root-mode upward --ignore /node_modules/ ../polymath-shared/src --out-dir ../polymath-shared/build --copy-files",
"build:artifacts": "rm -rf ../new-polymath-scripts/build && babel --root-mode upward --ignore /node_modules/ ../new-polymath-scripts/src/fixtures --out-dir ../new-polymath-scripts/build/fixtures --copy-files",
"typecheck": "flow --show-all-branches"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@polymathnetwork/shared": "0.0.0",
"@sendgrid/mail": "^6.2.1",
"bluebird": "^3.5.2",
"ddos": "^0.1.30",
"dotenv": "^6.0.0",
"eth-sig-util": "^1.4.2",
"ethereumjs-util": "^5.1.5",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "4.17.17",
"moment": "2.20.1",
"mongoose": "^5.0.14",
"react": "16.4.0",
"react-dom": "16.4.0",
"web3": "1.0.0-beta.30",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-syntax-async-generators": "7.0.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "22.4.3",
"babel-loader": "^8.0.2",
"eslint-config-react-app": "2.1.0",
"flow-bin": "^0.81.0",
"jest": "^24.1.0",
"jest-junit": "^5.2.0",
"react-test-renderer": "^16.5.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js}"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/startup/!(setupWeb3)",
"!**/index.js",
"!src/server.js",
"!src/specsInit.js"
],
"setupFiles": [
"./src/specsInit.js"
],
"coverageReporters": [
"lcov",
"cobertura",
"text"
],
"coverageDirectory": "<rootDir>/reports",
"reporters": [
"jest-junit",
"default"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/../../config/babelJestWrapper"
}
}
}