-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "dashboard-api",
"version": "1.0.0",
"description": "",
"directories": {
"lib": "src/"
},
"files": [
"index.js",
"src/"
],
"main": "index.js",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack",
"build:prod": "webpack --bail",
"lint": "eslint ./src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronrosenthal/dashboard-api.git"
},
"author": "Aaron Rosenthal",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronrosenthal/dashboard-api/issues"
},
"homepage": "https://github.com/aaronrosenthal/dashboard-api#readme",
"dependencies": {
"angular": "^1.6.1"
},
"devDependencies": {
"angular": "^1.6.1",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"ng-annotate-loader": "^0.2.0",
"webpack": "^2.2.1"
}
}