-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "ecency-api",
"version": "3.0.1",
"private": true,
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
"@hiveio/dhive": "^1.2.7",
"axios": "^1.7.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"hivesigner": "^3.2.5",
"js-base64": "^3.7.7",
"node-cache": "^5.1.0",
"node-sass": "^4.14.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.41",
"@types/express": "^4.17.0",
"@types/jest": "^23.3.14",
"@types/node": "^12.6.6",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/webpack-env": "^1.14.0",
"razzle": "^3.0.0",
"razzle-plugin-scss": "^3.1.3",
"razzle-plugin-typescript": "^3.0.0",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.0.0",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
},
"resolutions": {
"jest": "^26.0.0"
},
"jest": {
"transform": {
"\\.(ts|tsx)$": "ts-jest",
"\\.css$": "<rootDir>/node_modules/razzle/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/node_modules/razzle/config/jest/fileTransform.js"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.(ts|js)?(x)",
"<rootDir>/src/**/?(*.)(spec|test).(ts|js)?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
]
}
}