-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"name": "advanced-module-practice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"start": "nodemon --exec 'babel-node src/index'",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AustinCodingAcademy/advanced-first-web-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AustinCodingAcademy/advanced-first-web-server/issues"
},
"homepage": "https://github.com/AustinCodingAcademy/advanced-first-web-server#readme",
"dependencies": {
"express": "^4.15.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-istanbul": "^0.12.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-regenerator": "^6.16.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-resolver": "^1.1.0",
"eslint": "^3.10.2",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"nodemon": "^1.11.0"
}
}