-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.63 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": "create-supertokens-app",
"type": "module",
"version": "0.0.55",
"description": "",
"main": "index.js",
"scripts": {
"build": "cd lib && npx tsc -p tsconfig.json",
"build-check": "cd lib && npx tsc -p tsconfig.json --noEmit",
"check-circular-dependencies": "npx madge --circular --extensions js ./lib/build/",
"build-pretty": "npm run build && npx prettier --write . && npx clear-npx-cache",
"set-up-hooks": "cp hooks/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"pretty-check": "npx prettier --check ."
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.0.1",
"figlet": "^1.5.2",
"inquirer": "^9.1.0",
"node-emoji": "^1.11.0",
"node-fetch": "^3.2.10",
"node-machine-id": "^1.1.12",
"ora": "^6.1.2",
"tar": "^6.1.11",
"uuid": "^8.3.2",
"validate-npm-package-name": "^4.0.0",
"which-pm-runs": "^1.1.0",
"yargs": "^17.5.1"
},
"bin": "lib/build/index.js",
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.1",
"@types/node-emoji": "^1.8.2",
"@types/tar": "^6.1.2",
"@types/uuid": "^8.3.4",
"@types/validate-npm-package-name": "^4.0.0",
"@types/which-pm-runs": "^1.0.2",
"@types/yargs": "^17.0.12",
"clear-npx-cache": "^1.0.1",
"madge": "^5.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=12.22.0"
}
}