This repository has been archived by the owner on Apr 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "speedtest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run client:build && npm run server:build",
"client:dev": "snowpack dev",
"client:build": "snowpack build",
"client:test": "web-test-runner \"src/**/*.test.ts\"",
"dev:reset-db": "prisma migrate reset --preview-feature",
"dev:import-data": "ts-node --project ./server/tsconfig.json ./server/import-data.ts",
"lint": "eslint . --ext .ts --fix",
"postinstall": "prisma generate",
"server:build": "tsc --project ./server/tsconfig.json",
"server:dev": "nodemon --watch \"server/**\" --ext \"ts,json\" --ignore \"server/**/*.spec.ts\" --exec \"ts-node --project ./server/tsconfig.json ./server/index.ts\"",
"start": "npm run client:dev & npm run server:dev"
},
"keywords": [],
"author": "Jan Florian Dietrich <jfd@daenen4.de> (http://www.daenen4.de/)",
"license": "ISC",
"devDependencies": {
"@prisma/cli": "^2.13.0",
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-svelte": "^3.4.0",
"@snowpack/plugin-typescript": "^1.1.1",
"@snowpack/web-test-runner-plugin": "^0.1.5",
"@testing-library/svelte": "^3.0.0",
"@types/chai": "^4.2.13",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.13",
"@types/snowpack-env": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"@web/test-runner": "^0.10.0",
"autoprefixer": "^10.1.0",
"chai": "^4.2.0",
"cssnano": "^4.1.10",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-unicorn": "^23.0.0",
"nodemon": "^2.0.6",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"rxjs-spy": "^7.5.3",
"snowpack": "^2.18.4",
"svelte-preprocess": "^4.0.8",
"tailwindcss": "^2.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@prisma/client": "^2.13.0",
"@sinclair/typebox": "^0.12.7",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"fastify": "^3.9.1",
"fastify-cors": "^5.1.0",
"fastify-static": "^3.3.0",
"glob": "^7.1.6",
"loglevel": "^1.7.1",
"remeda": "0.0.27",
"rxjs": "^6.6.3",
"svelte": "^3.24.0",
"svelte-frappe-charts": "^1.3.1"
},
"prisma": {
"schema": "./server/prisma/schema.prisma"
}
}