-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "solid-realworld",
"version": "0.0.0",
"description": "A Solid Implementation of the Realworld Example App",
"main": "public/index.js",
"scripts": {
"start": "serve public -l 5000 -s & rollup -w -c",
"build": "rollup -c --environment production",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs/solid-realworld.git"
},
"keywords": [
"Solid",
"Realworld",
"example"
],
"author": "Ryan Carniato",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidjs/solid-realworld/issues"
},
"homepage": "https://github.com/solidjs/solid-realworld#readme",
"dependencies": {
"marked": "^0.8.0",
"solid-js": "^1.3.3"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/plugin-proposal-optional-chaining": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@rollup/plugin-babel": "5.2.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-node-resolve": "13.0.5",
"babel-preset-solid": "^1.3.2",
"rollup": "2.52.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"serve": "^11.3.2"
}
}