-
Notifications
You must be signed in to change notification settings - Fork 1
/
projectList.json
82 lines (82 loc) · 2.4 KB
/
projectList.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[
{
"name":"vue3",
"path":"app/vue3-realworld-app"
},
{
"name":"vue-vapor",
"path":"app/vue3-vapor-realworld-app"
},
{
"name":"react",
"path":"app/react-redux-realworld-example-app",
"dist":"build"
},
{
"name":"angular",
"path":"app/angular-realworld-example-app",
"build":"\"node_modules/.bin/ng\" build --configuration production --base-href ./"
},
{
"name":"svelte",
"path":"app/realworld",
"preview":"set NODE_EXTRA_CA_CERTS=../../server/realword-express-sequelize/CA.crt && \"node_modules/.bin/vite\" preview"
},
{
"name":"solid",
"path":"app/solid-realworld",
"dist":"public"
},
{
"name":"preact",
"path":"app/preact-realworld-example-app"
},
{
"name":"qwik",
"path":"app/realworld-qwik",
"build":"\"node_modules/.bin/vite\" build",
"preview":"\"node_modules/.bin/vite\" preview"
},
{
"name":"ember",
"path":"app/ember-realworld",
"build":"set NODE_OPTIONS=--openssl-legacy-provider && \"node_modules/.bin/ember\" build --environment=production"
},
{
"name":"apprun",
"path":"app/apprun-realworld-example-app",
"preview":"\"node_modules/.bin/webpack\" serve --mode production"
},
{
"name":"hyperapp",
"path":"app/hyperapp-realworld-example-app",
"build":"\"node_modules/.bin/parcel\" build index.html"
},
{
"name":"imba",
"path":"app/imba-realworld-example-app"
},
{
"name":"riot",
"path":"app/riot_realworld_example_app",
"dist":"docs"
},
{
"name":"san",
"path":"app/san-realworld-app",
"build":"(if exist dist rmdir dist /Q /S) && set NODE_OPTIONS=--openssl-legacy-provider && \"node_modules/.bin/webpack\" --config=webpack.config.js --mode=production"
},
{
"name":"stencil",
"path":"app/stencil-realworld-app",
"dist":"www",
"build":"(if exist www rmdir www /S /Q) && \"node_modules/.bin/stencil\" build --prerender"
},
{
"name":"yew",
"path":"app/rust-yew-realworld-example-app",
"install":"cargo install wasm-pack && cargo install --locked trunk",
"build":"cd crates/conduit-wasm && trunk build",
"dist":"crates/conduit-wasm/dist"
}
]