-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
127 lines (127 loc) · 3.51 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@daostack/arc.js",
"version": "0.2.89",
"description": "",
"keywords": [],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"src",
"scripts/copyABIsFromMigration.js"
],
"author": "DAOstack <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/daostack/client"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:docs": "typedoc --out docs --target commonjs --theme markdown --mode file --plugin typedoc-plugin-markdown src",
"bundle": "rollup -c rollup.config.ts -w",
"lint": "npm run tslint",
"prepublish": "npm run copy-abis && npm run build",
"copy-abis": "node scripts/copyABIsFromMigration.js",
"prebuild": "rimraf dist",
"quality": "npm run test:prod",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"test": "jest --runInBand --forceExit",
"test:watch": "jest --watch",
"tslint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"lint-fix": "tslint --fix --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test-env-up": "./test-env-up.sh"
},
"jest": {
"transform": {
".(ts|tsx)$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": 10
}
},
"collectCoverage": false,
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"devDependencies": {
"@daostack/migration": "0.0.1-rc.57-v1",
"@daostack/subgraph-test-env": "0.0.39-8",
"@types/graphql": "^14.2.2",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^24.0.15",
"@types/node": "^10.14.13",
"@types/web3": "^1.2.2",
"@types/ws": "^6.0.1",
"babel-eslint": "^10.0.2",
"colors": "^1.3.2",
"coveralls": "^3.0.5",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"lint-staged": "^7.3.0",
"lodash.camelcase": "^4.3.0",
"node-gyp": "^3.8.0",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.6.2",
"rollup": "^0.68.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^26.4.4",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.4",
"typescript": "^3.7.5",
"u": "^0.1.0"
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-client-ws": "^2.5.0",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.15",
"apollo-link-retry": "^2.2.15",
"apollo-link-ws": "^1.0.18",
"decimal.js": "^10.2.1",
"form-data": "^3.0.0",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"isomorphic-fetch": "^2.2.1",
"isomorphic-ws": "^4.0.1",
"js-logger": "1.6.0",
"rxjs": "6.4.0",
"subscriptions-transport-ws": "^0.9.16",
"web3": "1.3.0",
"ws": "^6.2.1"
}
}