-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "snarkyjs-sudoku",
"version": "0.1.0",
"description": "",
"type": "module",
"scripts": {
"start": "node src/server.js & esbuild --watch --splitting --bundle ./src/App.jsx --outdir=./public/js --format=esm --target=esnext --define:process.env.NODE_ENV='\"development\"'",
"build": "tsc && esbuild --minify --splitting --bundle ./src/App.jsx --outdir=./public/js --format=esm --target=esnext --define:process.env.NODE_ENV='\"production\"'"
},
"keywords": [],
"author": "O(1) labs",
"license": "Apache-2.0",
"dependencies": {
"@headlessui/react": "^1.7.3",
"esbuild": "^0.14.2",
"headlessui": "^0.0.0",
"node-sass": "^4.14.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jsx": "^1.0.0",
"snarkyjs": "^0.6.0",
"styled-components": "^5.3.6",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/react": "^18.0.23",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.12",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"postcss": "^8.4.18",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"tailwindcss": "^3.2.1",
"webpack": "^5.74.0"
}
}