-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
58 lines (58 loc) · 1.55 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
52
53
54
55
56
57
58
{
"name": "create-cljs-app",
"version": "0.0.0-development",
"description": "Set up a modern cljs app by running one command.",
"main": "index.js",
"bin": {
"create-cljs-app": "./bin/create-cljs-app.js"
},
"engines": {
"node": ">=10.12"
},
"scripts": {
"sc": "shadow-cljs",
"server": "shadow-cljs stop && shadow-cljs start",
"start": "shadow-cljs watch lib",
"build": "yarn clean && shadow-cljs release lib",
"test": "shadow-cljs watch test --config-merge \"{:autorun true}\"",
"test:once": "shadow-cljs compile test && node out/test.js",
"e2e": "shadow-cljs compile e2e && node out/e2e.js",
"quick-e2e": "shadow-cljs compile lib && yarn e2e",
"lint": "clj-kondo --lint src",
"format": "zprint-clj --hang -i \"./src/**/*.{clj,cljs,cljc,edn}\" -o ./ && zprint-clj -i \"./*.edn\" -o ./",
"clean": "shx rm -rf dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/filipesilva/create-cljs-app.git"
},
"keywords": [
"clojure",
"clojurescript",
"clj",
"cljs",
"shadow-cljs"
],
"author": "filipesilva",
"bugs": {
"url": "https://github.com/filipesilva/create-cljs-app/issues"
},
"homepage": "https://github.com/filipesilva/create-cljs-app#readme",
"devDependencies": {
"clj-kondo": "2020.01.13",
"shadow-cljs": "^2.11.4",
"shx": "^0.3.2",
"zprint-clj": "^0.8.0"
},
"dependencies": {
"chalk": "^4.1.0",
"ora": "^5.1.0",
"semver": "^7.3.2",
"shelljs": "^0.8.4"
},
"files": [
"bin",
"dist",
"template"
]
}