-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "kittens-api",
"version": "0.0.0",
"private": true,
"author": {
"name": "SJ Pratt",
"email": "hey@pratt.jp"
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-inline-dotenv": "^1.1.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dynamodb": "^1.1.1",
"ethereum-input-data-decoder": "0.0.3",
"express": "^4.16.3",
"joi": "^13.2.0",
"socketcluster-client": "^11.0.2",
"socketcluster-server": "^11.1.0",
"web3-eth": "^1.0.0-beta.34"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.3",
"nodemon": "^1.17.3",
"prettier": "^1.11.1",
"tape": "^4.9.0"
},
"engines": {
"node": "9.11.x",
"npm": "5.6.x"
},
"scripts": {
"build": "babel lib -d dist",
"start": "nodemon src/server --exec babel-node",
"startWorker": "nodemon src/worker --exec babel-node",
"serve": "node dist/server",
"serveWorker": "node dist/worker",
"test": "npm run precommit",
"precommit": "lint-staged"
}
}