-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "anonyboard",
"version": "1.0.0",
"description": "an anonymous message board",
"main": "index.js",
"repository": "git@github.com:CodeDraken/anonyboard.git",
"author": "CodeDraken",
"license": "MIT",
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
},
"standard": {
"globals": [
"$",
"jQuery",
"fetch"
],
"ignore": [
"node_modules/**"
],
"parser": "babel-eslint",
"envs": [
"jest",
"mocha",
"node"
]
},
"scripts": {
"start": "NODE_PATH=. node index.js",
"start-watch": "NODE_PATH=. nodemon index.js",
"test": "NODE_ENV=test NODE_PATH=. mocha --recursive tests",
"test-watch": "nodemon --exec 'yarn test'",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn start-watch\" \"yarn client\"",
"lt": "lt -p 5000 -s anonyboardlt000",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"lint": "standard",
"lint-fix": "standard --fix"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"expect": "^22.0.6",
"localtunnel": "^1.8.3",
"mocha": "^4.1.0",
"nodemon": "^1.14.10",
"standard": "^10.0.3",
"superagent": "^3.8.2",
"supertest": "^3.0.0"
},
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"helmet": "^3.10.0",
"mongodb": "^3.0.1",
"mongoose": "^4.13.9"
}
}