-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.59 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
44
45
46
47
48
49
50
51
{
"name": "makepi",
"version": "0.0.5",
"description": "An Open Source Makerspace CRM API",
"repository": "[email protected]:djmeph/makepi.git",
"main": "index.js",
"scripts": {
"start": "nodemon app.js",
"test": "NODE_ENV=test mocha -u bdd --timeout 999999 --colors --exit --inspect --recursive ./test/**/*.spec.js",
"test:deploy": "NODE_ENV=test mocha -u bdd --timeout 999999 --no-colors --exit --inspect --recursive ./test/**/*.spec.js",
"test:grep": "NODE_ENV=test mocha -u bdd --timeout 999999 --colors --exit --inspect --recursive ./test/**/*.spec.js -g",
"eslint": "eslint --ignore-path .eslintignore '**/*.js'",
"deploy": "serverless deploy",
"serverless": "serverless"
},
"keywords": [
"makerspace",
"hackerspace",
"api",
"crm"
],
"author": "Norman Witte III",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1540.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dynamodb-wrapper": "https://github.com/qloan/dynamodb-wrapper#v0.3.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.26",
"serverless-http": "^3.2.0",
"stripe": "^7.10.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.3",
"react": "^16.10.2",
"serverless": "^3.38.0",
"serverless-offline": "^13.3.3",
"sinon": "^7.5.0"
}
}