forked from supertokens/create-supertokens-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.18 KB
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
58
59
60
61
62
63
64
{
"name": "create-supertokens-app",
"type": "module",
"version": "0.0.58",
"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 .",
"dev": "USE_LOCAL_TEMPLATES=true tsx lib/ts/index.ts",
"dev:debug": "USE_LOCAL_TEMPLATES=true DEBUG=true tsx lib/ts/index.ts",
"test": "vitest --config vitest.config.ts",
"test:e2e": "vitest run --config vitest.config.ts tests/e2e.test.ts"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.0.1",
"dedent": "^1.6.0",
"figlet": "^1.5.2",
"inquirer": "^9.1.0",
"node-emoji": "^1.11.0",
"node-fetch": "^3.3.2",
"node-machine-id": "^1.1.12",
"ora": "^6.1.2",
"otpauth": "^9.4.0",
"tar": "^6.1.11",
"tiny-version-compare": "^4.0.0",
"uuid": "^8.3.2",
"validate-npm-package-name": "^4.0.0",
"which-pm-runs": "^1.1.0",
"yargs": "^17.5.1"
},
"bin": "lib/build/lib/ts/index.js",
"devDependencies": {
"@playwright/test": "^1.51.1",
"@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",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^6.0.1",
"tree-kill": "^1.2.2",
"tsx": "^4.19.2",
"typescript": "^4.8.2",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=20"
}
}