-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.52 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
49
50
51
52
53
54
{
"name": "angular-webpack-babel-scratch",
"version": "1.0.0",
"description": "A starter app for angular projects in es6 and webpack",
"main": "runner.js",
"dependencies": {
"angular": "^1.6.5",
"angular-animate": "^1.6.5",
"angular-aria": "^1.6.5",
"angular-material": "^1.1.4",
"angular-ui-router": "^1.0.3",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "3.3.0",
"webpack-dev-server": "^2.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node runner debug",
"watch": "node runner watch",
"build": "node runner prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugMaker-237/angular-webpack-babel-scratch.git"
},
"keywords": [
"angular",
"webpack",
"babel",
"es6"
],
"author": "BugMaker237",
"license": "ISC",
"bugs": {
"url": "https://github.com/bugMaker-237/angular-webpack-babel-scratch/issues"
},
"homepage": "https://github.com/bugMaker-237/angular-webpack-babel-scratch#readme"
}