-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.61 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
52
53
54
55
56
{
"name": "types-generation",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fontsource/inter": "^4.5.11",
"firebase": "^9.9.1",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-code-editor": "^0.11.2",
"url": "^0.11.0",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4",
"xhr2": "^0.2.1"
},
"scripts": {
"start": "NODE_ENV=development npx spago build && parcel dev/index.html",
"build": "npx spago build",
"bundle": "NODE_ENV=production rm -rf dist && yarn bundle:build && yarn bundle:dce && yarn bundle:parcel && yarn bundle:static",
"bundle:static": "cp -r static/* dist",
"bundle:build": "npx spago build",
"bundle:dce": "zephyr -f Main.main",
"bundle:parcel": "parcel build dev/index.html --no-source-maps",
"css": "npx tailwindcss -i ./src/input.css -o ./src/styles.css --watch",
"serve-prod": "npx http-server dist -o -p 1234"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"buffer": "^6.0.3",
"parcel": "^2.3.2",
"parcel-plugin-static-files-copy": "^2.6.0",
"postcss": "^8.4.6",
"prettier": "2.5.1",
"process": "^0.11.10",
"purescript": "^0.15.4",
"spago": "^0.20.9",
"purty": "^7.0.0",
"querystring-es3": "^0.2.1",
"serve-static": "^1.15.0",
"tailwindcss": "^3.0.23",
"zephyr": "https://github.com/dnikolovv/zephyr.git"
}
}