forked from vinu-deriv/trading-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "dtrader-air",
"version": "0.1.0",
"description": "Lightweight version of DTrader app",
"scripts": {
"start": "vite",
"dev": "http-server -c-1",
"build": "vite build",
"lint": "eslint \"./src/**/*.?(js|jsx|ts|tsx)\" --fix",
"prepare": "husky install",
"serve": "vite preview",
"test": "vitest run",
"test-watch": "vitest",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@solidjs/testing-library": "^0.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@vitest/coverage-c8": "^0.27.0",
"@vitest/ui": "^0.27.0",
"eslint": "^8.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.7.3",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"jsdom": "^21.0.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"vite": "^3.0.9",
"vite-plugin-pwa": "^0.13.1",
"vite-plugin-solid": "^2.3.0",
"vite-plugin-solid-svg": "^0.5.0",
"vitest": "^0.27.0",
"workbox-core": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4"
},
"dependencies": {
"@deriv/deriv-api": "^1.0.11",
"@solidjs/router": "^0.8.2",
"classnames": "^2.3.2",
"lodash.throttle": "^4.1.1",
"moment": "^2.29.4",
"solid-js": "^1.5.1"
}
}