-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "website-api",
"version": "0.0.1",
"description": "This will be the RESTful api for indieTorrent/indieTorrent.",
"main": "app/app.js",
"scripts": {
"build": "babel app -d dist",
"dev": "babel-node app/app.js",
"flow": "flow",
"lint": "node_modules/eslint/bin/eslint.js app/**",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm test && npm run lint && flow app/",
"prepush": "npm test && npm run lint && flow app/",
"serve": "node dist/app.js",
"start": "nodemon app/app.js --exec babel-node",
"test": "jest"
},
"author": "Joshua Austill",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2"
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-conventional": "^5.2.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"flow": "^0.2.3",
"flow-bin": "^0.61.0",
"husky": "^0.14.3",
"jest": "^22.0.3",
"nodemon": "^1.13.3"
}
}