-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "svelte-app",
"version": "0.1.0",
"private": true,
"main": "build/backend/server.js",
"scripts": {
"build": "tsc && rollup -c",
"dev": "tsc && rollup -c -w",
"start": "kill $(lsof -ti:80) 2>/dev/null; nodemon --enable-source-maps --watch ./build ./build/backend/server.js",
"test": "run unit-tests && run web-tests",
"unit-tests": "./bin/test-all",
"web-tests": "npx playwright test --project=chromium",
"all-web-tests": "npx playwright test",
"check": "svelte-check --tsconfig ./src/frontend/tsconfig.json",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/cookie": "^0.4.1",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mapbox-gl": "^1.13.4",
"@types/morgan": "^1.9.3",
"@types/object-hash": "^2.2.1",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@types/proper-lockfile": "^4.1.2",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"fast-csv": "^4.3.6",
"jest": "^28.1.1",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"readline-sync": "^1.4.10",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.50.0",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-dnd-action": "^0.9.18",
"svelte-preprocess": "^4.10.5",
"ts-jest": "^28.0.0-next.3",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"@types/cookie-parser": "^1.4.2",
"@types/http-status-codes": "^1.2.0",
"@types/node": "^18.11.18",
"@types/page": "^1.11.5",
"@zxcvbn-ts/core": "^2.0.1",
"@zxcvbn-ts/language-common": "^2.0.1",
"@zxcvbn-ts/language-en": "^2.0.1",
"axios": "^0.26.1",
"bootstrap": "^5.1.3",
"chart.js": "^3.7.1",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dayjs": "^1.11.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"http-status-codes": "^2.2.0",
"jstat": "^1.9.5",
"mapbox-gl": "^2.9.2",
"morgan": "^1.10.0",
"object-hash": "^3.0.0",
"page": "^1.11.6",
"pg": "^8.7.3",
"pg-format": "^1.0.4",
"proper-lockfile": "^4.1.2",
"rotating-file-stream": "^3.0.3",
"simple-svelte-autocomplete": "^2.4.0",
"svelte-chartjs": "^1.1.4",
"svelte-forms-lib": "^2.0.1",
"sveltestrap": "^5.9.0",
"yup": "^0.32.11"
}
}