-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.46 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
{
"private": true,
"name": "quickstart",
"version": "0.0.0",
"description": "",
"main": "./app/src/main.ts",
"scripts": {
"build": "tsc -b",
"test": "jest",
"lint": "eslint 'app/{src,test}/**.ts'; prettier --check 'app/{src,test}/**.ts' package.json tsconfig.json",
"deploy": "node dist/src/main.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"jest": {
"coveragePathIgnorePatterns": [
"test/*"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"dependencies": {
"oasis-std": "=0.1.0-rc.30"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"oasis": {
"serviceDependencies": {
"greeter": "file:./target/service/greeter.wasm"
},
"clientsDir": "app/service-clients"
}
}