-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "never-forget-server",
"version": "1.0.0",
"description": "The backend server for Never Forget, a spaced repetition learning app.",
"author": "tmns <tmn5@pm.me>",
"license": "WTFPL",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "cross-env NODE_ENV=testing jest --forceExit --detectOpenHandles",
"dev": "nodemon --exec yarn restart",
"restart": "rimraf dist && yarn build && yarn start",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmns/never-forget-server.git"
},
"keywords": [
"spaced",
"repetition",
"learn",
"super",
"memo",
"sm",
"never",
"forget",
"server",
"backend"
],
"bugs": {
"url": "https://github.com/tmns/never-forget-server/issues"
},
"homepage": "https://github.com/tmns/never-forget-server#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"cross-env": "^5.2.0",
"graphql-codegen-core": "^0.18.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"supertest": "^4.0.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test-db-setup.js"
],
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
},
"dependencies": {
"apollo-server-express": "^2.5.0",
"bcrypt": "^3.0.6",
"connect-mongodb-session": "^2.1.1",
"cuid": "^2.1.6",
"express": "^4.17.1",
"express-session": "^1.16.1",
"graphql": "^14.3.1",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.4",
"lodash": "^4.17.11",
"mongoose": "^5.5.11",
"ms": "^2.1.1"
}
}