forked from solidjs/solid-realworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "dist/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/ryansolid/solid-realworld.git"
},
"keywords": [
"Solid",
"Realworld",
"example"
],
"author": "Ryan Carniato",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryansolid/solid-realworld/issues"
},
"homepage": "https://github.com/ryansolid/solid-realworld#readme",
"dependencies": {
"marked": "^0.8.0",
"solid-js": "0.20.1"
},
"devDependencies": {
"@babel/core": "7.11.4",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@rollup/plugin-commonjs": "15.0.0",
"@rollup/plugin-node-resolve": "8.1.0",
"babel-preset-solid": "0.20.1",
"rollup": "2.26.5",
"@rollup/plugin-babel": "5.2.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"serve": "^11.3.2"
}
}