-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 847 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 847 Bytes
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
{
"name": "upcoming-lessons",
"version": "1.0.0",
"scripts": {
"start": "nodemon server/server.js",
"client-install": "cd client && npm i",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run start\" \"npm run client\" ",
"test": "mocha --compilers js:babel-core/register"
},
"babel": {
"presets": [
"es2015"
]
},
"author": "Thomas Proenza",
"license": "ISC",
"dependencies": {
"concurrently": "^3.6.1",
"express": "^4.16.3",
"lodash": "^4.17.10",
"moment": "^2.22.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3"
}
}