-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "ShallowIndigo",
"version": "0.0.0",
"description": "the very best",
"main": "src/bot.js",
"format": "gen7randombattle",
"accepts": "ALL",
"nickname": "ShallowIndigo",
"type": "module",
"dependencies": {
"@types/node": "^13.9.1",
"leftovers-again": "git+ssh://[email protected]/avadavat/leftovers-again.git",
"typescript": "^3.8.3"
},
"devDependencies": {
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"scripts": {
"build": "tsc",
"develop": "nodemon src/app.js",
"start": "node --experimental-modules --experimental-json-modules --es-module-specifier-resolution=node build/src/app.js",
"server": "cd Pokemon-Showdown && npm start",
"prettier": "pretty-quick --staged --pattern \"**/*.*(js|jsx|ts|tsx)\"",
"prettier-check": "prettier --check \"**/*.*(js|jsx|ts|tsx)\"",
"prettier-full": "prettier --write \"**/*.*(js|jsx|ts|tsx)\""
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}