-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.87 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
{
"name": "feathers-svelte-template",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Avi Marcus",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^12.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run lint && npm run jest",
"lint": "eslint src/. test/. --config .eslintrc.json",
"dev-server": "nodemon src/ --ignore '*.svelte' --ignore 'web-*.js'",
"start": "node src/",
"jest": "jest --forceExit",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"dependencies": {
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/authentication-local": "^4.5.4",
"@feathersjs/authentication-oauth": "^4.5.4",
"@feathersjs/configuration": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/rest-client": "^4.5.4",
"@feathersjs/socketio": "^4.5.4",
"@feathersjs/transport-commons": "^4.5.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-knex": "^7.1.0",
"helmet": "^3.23.3",
"knex": "^0.21.1",
"pg": "^8.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"serve-favicon": "^2.5.0",
"spdy": "^4.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"axios": "^0.19.2",
"eslint": "^6.8.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.0.0"
}
}