-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 798 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 798 Bytes
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
{
"name": "@hotandcold/classic",
"version": "0.0.0",
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"playtest": "dotenvx run -f ../../.env.development -- sh -c 'devvit playtest $SUBREDDIT --config=../../$CLASSIC_DEVVIT_CONFIG'",
"dev:upload": "dotenvx run -f ../../.env.development -- sh -c 'devvit upload --config=../../$CLASSIC_DEVVIT_CONFIG'",
"lint": "eslint ./src/",
"prettier": "prettier --write .",
"test": "vitest run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@devvit/payments": "0.11.12",
"@devvit/public-api": "0.11.12",
"@hotandcold/classic-shared": "*",
"@hotandcold/shared": "*",
"luxon": "^3.6.1"
},
"devDependencies": {
"@types/luxon": "^3.6.2",
"eslint": "^9.24.0"
}
}