-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 793 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
{
"name": "second-example-simple-api",
"version": "1.7.0",
"description": "A simple Second example",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"build": "npm run babel && npm run client-bundle",
"babel": "babel src -d lib",
"client-bundle": "webpack",
"test": "npm run eslint",
"eslint": "eslint --fix bin/ src/",
"prepare": "npm run build",
"start": "npm run build && node ."
},
"author": "Joseph Wynn <joseph@wildlyinaccurate.com>",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.15",
"memory-fs": "^0.4.1",
"preact": "^8.5.2",
"preact-render-to-string": "^3.8.2",
"second": "file:../second",
"second-dehydrator": "file:../second-dehydrator"
},
"private": true
}