-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.99 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
{
"name": "perfect-stack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"seed": "edgedb query --file=dbschema/seeds/initial.edgeql",
"test:seed": "EDGEDB_DATABASE=test edgedb query --file=dbschema/seeds/test.edgeql",
"migrate": "edgedb migrate",
"test:migrate": "(./dbschema/setup_test_db.sh || true) && EDGEDB_DATABASE=test edgedb migrate",
"start-for-test": "EDGEDB_DATABASE=test PORT=3003 imba src/server.imba",
"test:headed": "playwright test --headed",
"test": "playwright test",
"test:codegen": "npx playwright codegen http://localhost:3003",
"codegen": "concurrently \"npm:start-for-test\" \"npm:test:codegen\"",
"start": "concurrently \"npm:server\" \"npm:tailwind-watch\"",
"start:instance": "edgedb instance start perfect_stack",
"server": "imba -w src/server.imba",
"tailwind-watch": "tailwindcss -i tailwind/app.css -o src/index.css --watch",
"tailwind": "tailwindcss -i tailwind/app.css -o src/index.css",
"build": "npm run tailwind && imba build src/server.imba"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haikyuu/perfect-stack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/haikyuu/perfect-stack/issues"
},
"homepage": "https://github.com/haikyuu/perfect-stack#readme",
"dependencies": {
"@inertiajs/inertia": "^0.10.1",
"@types/express-session": "^1.17.4",
"@types/lodash": "^4.14.172",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^6.2.1",
"debug": "^4.3.2",
"edgedb": "^0.15.2",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"imba": "^2.0.0-alpha.208",
"imba-inertia-adapter": "^2.0.0-alpha.209",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"typescript": "4.3.5"
},
"devDependencies": {
"@playwright/test": "^1.14.1",
"autoprefixer": "^10.3.2",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7"
}
}