-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.45 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
{
"private": true,
"name": "auction-app",
"version": "0.1.0",
"description": "Second-price auction on the blockchain.",
"license": "MIT",
"author": "Nick Hynes <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b && rollup -c rollup.config.ts",
"lint": "eslint 'app/**/*.ts' && prettier -c 'app/**/*.ts'",
"lint:fix": "eslint --fix 'app/**/*.ts' && prettier --write 'app/**/*.ts'",
"test": "jest"
},
"eslintIgnore": [
"node_modules/"
],
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "/test/.*\\.spec\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"dependencies": {
"@oasislabs/client": "^1.0.0-rc.26",
"@oasislabs/service": "^1.0.0-rc.20"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"prettier": "^1.14.3",
"rollup": "^1.24.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
}
}