-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "mellow-react",
"version": "0.0.0",
"private": true,
"description": "a Sails application",
"keywords": [],
"dependencies": {
"@inertiajs/react": "^1.2.0",
"@sailscasts/sails-hook-node-fetch": "^0.0.3",
"@sailshq/connect-redis": "^6.1.3",
"@sailshq/lodash": "^3.10.6",
"@sailshq/socket.io-redis": "^6.1.2",
"connect-redis": "^7.1.1",
"fix-esm": "^1.0.1",
"inertia-sails": "^0.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sails": "^1.5.12",
"sails-flash": "^0.0.1",
"sails-hook-mail": "^0.1.0",
"sails-hook-organics": "^3.0.0",
"sails-hook-orm": "^4.0.3",
"sails-hook-sockets": "^3.0.1",
"sails-hook-wish": "^0.0.9",
"sails-postgresql": "^5.0.1"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.0.2",
"@types/node": "^22.5.5",
"create-sails-generator": "^0.0.3",
"playwright": "^1.47.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"sails-hook-shipwright": "^0.3.0",
"sails.io.js": "^1.2.1",
"socket.io-client": "^4.7.5",
"tailwindcss": "^3.4.12"
},
"scripts": {
"dev": "node --watch app.js",
"start": "NODE_ENV=production node app.js",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"test:unit": "node --test ./tests/unit/**/*.test.js",
"test": "npm run test:unit"
},
"main": "app.js",
"engines": {
"node": ">=18.0"
}
}