-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "FXrates",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "7.7.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinktwice13/FXrates.git"
},
"author": "Mario K",
"license": "ISC",
"bugs": {
"url": "https://github.com/thinktwice13/FXrates/issues"
},
"homepage": "https://github.com/thinktwice13/FXrates#readme",
"dependencies": {
"babel-cli": "~6.24.1",
"babel-core": "~6.24.1",
"body-parser": "~1.17.1",
"dotenv": "^4.0.0",
"express": "~4.15.2",
"mocha": "^3.2.0",
"mongoose": "~4.9.5",
"node-sass": "^4.5.2"
},
"devDependencies": {
"concurrently": "~3.4.0",
"eslint": "3.15.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"nodemon": "~1.11.0"
},
"scripts": {
"server": "nodemon server",
"start-dev": "concurrently \"npm run server\" \"cd client/ && npm start\"",
"heroku-postbuild": "npm i && cd client/ && npm i --only=dev && npm i && npm run build",
"build": "npm i && cd client/ && npm i && npm run build && cd .. && concurrently \"npm run server\" \"serve -s client/build\""
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
]
}