-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1019 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1019 Bytes
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
{
"name": "flag-maker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run wasm && next dev",
"wasm": "cd wasm-helpers && wasm-pack build && cd ../ && rm -rf pkg && cp -r wasm-helpers/pkg pkg && rm -rf pkg/.gitignore",
"build_local": "npm run wasm && next build",
"build": "next build",
"start": "next start -p $PORT"
},
"dependencies": {
"@vercel/analytics": "^0.1.11",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"async-canvas-to-blob": "^1.0.3",
"classnames": "^2.3.1",
"file-saver": "^2.0.5",
"flex-gap-polyfill": "^4.1.0",
"next": "^12.0.7",
"next-plausible": "^3.12.4",
"postcss": "^8.4.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.1.0",
"raf": "^3.4.1",
"react": "17.0.2",
"react-color": "^2.19.3",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-scroll-to-component": "^1.0.2",
"sharp": "^0.29.3",
"tween": "^0.9.0",
"webpack-bundle-analyzer": "^4.5.0"
}
}