-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 2.02 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": "sample-github-spa",
"version": "1.0.0",
"description": "A [re-frame](https://github.com/Day8/re-frame) application designed to ... well, that part is up to you.",
"scripts": {
"clean": "lein clean",
"repl": "lein repl",
"figwheel": "lein figwheel",
"format": "lein cljfmt fix",
"workbox": "workbox generateSW",
"watch": "npm run watch:server",
"watch:server": "npm run watch:dev:server",
"watch:dev:server": "npm-run-all -p watch:dev:server:*",
"watch:dev:server:bundle": "nodemon target/server/js/compiled/server.js 8888 --watch target/server/js/compiled/server.js",
"watch:dev:server:src": "lein cljsbuild auto server-dev",
"watch:prod:server": "npm-run-all -p watch:prod:server:*",
"watch:prod:server:bundle": "nodemon target/server/prod/js/compiled/server.js 8889 --watch target/server/prod/js/compiled/server.js",
"watch:prod:server:src": "lein cljsbuild auto server-prod",
"build": "npm run build:prod",
"build:dev": "npm run build:dev:client && npm run build:server",
"build:prod": "npm run build:prod:client && npm run build:prod:server",
"build:dev:client": "lein cljsbuild once dev",
"build:prod:client": "lein cljsbuild once prod && npm run workbox",
"build:dev:server": "lein cljsbuild once server-dev",
"build:prod:server": "lein cljsbuild once server-prod",
"deploy:now": "now --docker --public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boxp/sample-github-spa.git"
},
"author": "boxp",
"license": "MIT",
"bugs": {
"url": "https://github.com/boxp/sample-github-spa/issues"
},
"homepage": "https://github.com/boxp/sample-github-spa#readme",
"dependencies": {
"@cljs-oss/module-deps": "1.1.1",
"express": "4.16.4",
"node-fetch": "2.3.0",
"nodemon": "1.18.9",
"npm-run-all": "4.1.5",
"react": "16.7.0",
"react-dom": "16.7.0",
"whatwg-fetch": "3.0.0",
"workbox-cli": "3.6.3",
"xmlhttprequest": "1.8.0"
}
}