-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "simpleusercms",
"version": "3.3.2",
"private": true,
"scripts": {
"dev": "rollup -c -w",
"dev:api": "npm run start:redis && nodemon --exec 'npm run start:graphql'",
"dev:vercel": "npm run start:redis && now dev",
"dev:netlify": "netlify dev",
"build": "rollup -c",
"start": "sirv public",
"start-rest": "node ./bin/www",
"start:graphql": "node --require dotenv/config ./bin/wwwgql",
"start:redis": "redis-server --daemonize yes",
"start:rediscli": "redis-cli",
"seed:redis:fixed": "node --require dotenv/config mock/seedRedis fixtures/users.json",
"test": "npm run start:redis && npm run test:integration",
"test:ci": "npm run test:integration",
"test:integration": "ava",
"test:integration:watch": "npm run test:integration -- --watch",
"test:unit": "SIM_STUB_DATASOURCE=1 ava",
"test:unit:watch": "npm run test:unit -- --watch",
"test:load": "dotenv -- npm run test:artillery",
"test:artillery": "artillery run -o load-report/$ART_QUERY-$ART_METHOD-$ART_ENV.json load-test-$ART_QUERY-$ART_METHOD.yml"
},
"dependencies": {
"@auth0/auth0-spa-js": "1.8.2",
"apollo-server-express": "2.14.2",
"cookie-parser": "1.4.4",
"debug": "2.6.9",
"express": "4.16.4",
"http-errors": "1.6.3",
"ioredis": "4.16.0",
"morgan": "1.9.1",
"nanographql": "2.0.0",
"serverless-http": "2.3.2",
"sirv-cli": "0.4.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.3",
"@types/sinon": "9.0.0",
"JSONStream": "1.3.5",
"ava": "3.11.0",
"dotenv": "8.2.0",
"faker": "5.5.3",
"husky": "6.0.0",
"node-fetch": "2.6.1",
"rollup": "1.32.1",
"rollup-plugin-livereload": "1.3.0",
"rollup-plugin-svelte": "5.2.1",
"rollup-plugin-terser": "7.0.0",
"sinon": "9.0.2",
"svelte": "3.22.2",
"test-listen": "1.1.0",
"ts-node": "8.8.2",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}