-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "test",
"version": "0.2.1",
"author": "yourName <[email protected]>",
"description": "your desc",
"private": true,
"scripts": {
"start": "npm run dev",
"prepare": "npm-run-all --parallel installClient",
"installClient": "cd ./client && npm install",
"dev": "npm-run-all --parallel server",
"test": "watch 'npm run test-unit' test server --wait 0",
"test-unit": "coffee test/index.coffee | tap-spec",
"buildClient": "cd ./client && npm run build",
"stage": "npm-run-all buildClient stagingServer",
"stagingServer": "APP_ENV=staging coffee server/index.coffee",
"deploy": "npm-run-all buildClient uploadAndRestartApp",
"client": "cd ./client && npm run dev",
"server": "APP_ENV=development supervisor --watch server --ignore server/public server/index.coffee",
"uploadAndRestartApp": "bash scripts/uploadAndRestartApp.sh"
},
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"axios": "^0.19.0",
"coffeescript": "^2.3.2",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dayjs": "^1.8.14",
"feathers-hooks-common": "^4.20.7",
"feathers-mongodb": "^5.0.0",
"feathers-nedb": "^5.0.1",
"globby": "^10.0.0",
"joi": "^14.3.1",
"jsondiffpatch": "^0.3.11",
"lodash": "^4.17.11",
"mongodb": "^3.3.0",
"nedb": "^1.8.0",
"node-schedule": "^1.3.2",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"fs-extra": "^8.1.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"supervisor": "^0.12.0",
"tap": "^14.6.1",
"tap-spec": "^5.0.0",
"watch": "^1.0.2"
}
}