-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 997 Bytes
/
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
{
"name": "2048",
"version": "1.0.0",
"description": "Implementation of 2048 in ClojureScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tw": "tailwind build tw/style.css -- -o target/css/main.css",
"watch": "shadow-cljs watch app",
"watch:css": "onchange 'tw/*css' -- npm run tw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavel-popov/2048-cljs.git"
},
"keywords": [
"clojurescript",
"tailwind",
"reagent"
],
"author": "Pavel Popov",
"license": "ISC",
"bugs": {
"url": "https://github.com/pavel-popov/2048-cljs/issues"
},
"homepage": "https://github.com/pavel-popov/2048-cljs#readme",
"devDependencies": {
"onchange": "^7.1.0",
"shadow-cljs": "2.11.23",
"tailwindcss": "^2.0.3"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}