forked from yukikurage/brainf__k
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1020 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
{
"name": "brainf__k",
"version": "1.0.0",
"description": "brainf**k interpreter by yukikurage",
"main": "index.js",
"scripts": {
"test:spago": "npx spago test",
"test": "run-s test:*",
"bundle:spago": "npx spago build",
"bundle:webpack": "npx webpack --mode production",
"bundle:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css",
"bundle": "run-s bundle:spago bundle:webpack bundle:tailwind",
"watch:webpack": "npx webpack --mode development --watch",
"watch:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css -w",
"watch:live-server": "cd public && npx live-server --port=8080",
"watch": "run-p watch:*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/jit": "^0.1.18",
"binaryen": "^106.0.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"purescript": "^0.14.7",
"spago": "^0.20.7",
"tailwindcss": "^3.0.23",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}