-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.34 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.34 KB
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
78
79
80
81
82
83
84
85
86
87
{
"name": "never-forget",
"version": "1.0.0",
"description": "Never Forget, a spaced repetition learning app.",
"author": "tmns <[email protected]>",
"license": "WTFPL",
"main": "index.js",
"scripts": {
"build": "babel server --out-dir dist",
"test": "cross-env NODE_ENV=testing jest --detectOpenHandles",
"server": "nodemon --exec yarn restart",
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"restart": "rimraf dist && yarn build && yarn start",
"start": "node dist/index.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build && npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmns/never-forget.git"
},
"keywords": [
"spaced",
"repetition",
"learn",
"super",
"memo",
"sm",
"never",
"forget",
"server",
"backend",
"react",
"graphql",
"fullstack",
"frontend"
],
"bugs": {
"url": "https://github.com/tmns/never-forget/issues"
},
"homepage": "https://github.com/tmns/never-forget#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",
"concurrently": "^4.1.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",
"cors": "^2.8.5",
"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"
}
}