-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "sapeur",
"version": "0.2.1",
"description": "Svelte/Sapper/GraphQL web application",
"license": "MIT",
"author": "bmi",
"repository": {
"type": "git",
"url": "https://github.com/appshore/SvelteSapperGraphQL"
},
"scripts": {
"dev": "PORT=3000 sapper dev",
"build": "sapper build",
"export": "sapper export",
"start": "PORT=4000 node __sapper__/build",
"-- TESTS --": "",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"-- DATABASE --": "",
"mongo": "mongod --dbpath ./db",
"mongoDump": "mongodump --db=sapeur --out=mongoDump/$npm_package_version",
"mongoDefault": "mongorestore --d=sapeur ./mongoDefault"
},
"dependencies": {
"apollo-cache-inmemory": "^1.3.11",
"apollo-client": "^2.4.7",
"apollo-link": "^1.2.4",
"apollo-link-http": "^1.5.7",
"apollo-server-express": "^2.2.6",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cl-editor": "^1.3.1",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cypress": "^3.1.4",
"date-fns": "^2.0.0-alpha.25",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"html-to-text": "^4.0.0",
"http": "0.0.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.14",
"sanitize-html": "^1.19.1",
"slug": "^0.9.2"
},
"devDependencies": {
"css-loader": "^1.0.1",
"mini-css-extract-plugin": "^0.4.5",
"npm-run-all": "^4.1.5",
"sapper": "^0.22.1",
"style-loader": "^0.23.1",
"svelte": "^2.15.3",
"svelte-loader": "^2.9.0",
"webpack": "^4.26.1"
}
}