-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 855 Bytes
/
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
{
"name": "generic-crud",
"version": "1.0.0",
"description": "A server for webservice calls that is wide open regardless of CORS. Offers some service calls to allow the creation of a crud-style web application. Not suitable for production for a host of reasons - this was developed to be a teaching aid.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "Brett Ritter <swiftone@swiftone.org>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"btoa": "^1.1.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"js-promisify": "^1.1.0",
"json-fs-store": "^1.0.1",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"nodemon": "^1.11.0"
}
}