-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 KB
/
package.json
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
{
"name": "robot-interview",
"version": "1.0.0",
"description": "Interview project starting point.",
"main": "server/index.js",
"scripts": {
"test": "mocha build/**/*.test.js --exit",
"pretest": "rimraf build && babel src -d build --copy-files",
"start": "node build/server/index.js",
"dev:babel": "babel src -w -d build --copy-files",
"dev:server": "nodemon --delay 2 --watch build build/server/index.js",
"dev": "concurrently --kill-others \"npm run dev:babel\" \"npm run dev:server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lstorey/robot-interview.git"
},
"author": "lstorey",
"license": "MIT",
"bugs": {
"url": "https://github.com/lstorey/robot-interview/issues"
},
"homepage": "https://github.com/lstorey/robot-interview#readme",
"dependencies": {
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"express": "^4.16.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-eslatest-node6": "^1.0.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
"eslatest-node6",
"react"
],
"sourceMaps": "inline"
}
}