-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.64 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
52
53
54
55
56
57
{
"name": "@doenet/service",
"version": "1.0.0",
"description": "Learner record store and page state store",
"main": "src/index.js",
"bin": "dist/index.js",
"scripts": {
"test": "nyc mocha --exit --require @babel/register test",
"start": "npm run production",
"server": "babel-node -r node_modules/dotenv/config ./src/index",
"serve": "NODE_ENV=development npm-run-all server",
"clean": "rimraf dist",
"build": "babel ./src --out-dir dist",
"production": "NODE_ENV=production npm-run-all clean build server:production"
},
"author": {
"name": "Jim Fowler",
"email": "[email protected]",
"url": "http://kisonecat.com/"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsondiffpatch": "^0.3.11",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.0",
"morgan": "^1.9.1",
"object-hash": "^2.0.1",
"redis": "^2.8.0",
"sha.js": "^2.4.11",
"winston-loggly-bulk": "^3.0.1",
"yarn-run-all": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.2.2",
"mocha": "^6.1.4",
"mongodb-memory-server": "^5.1.5",
"nyc": "^14.1.1"
}
}