-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 998 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
{
"name": "angular-setup-environment",
"version": "1.0.0",
"description": "Lightweight angular starter framework",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress --colors",
"lint": "eslint src/**",
"build": "rm -rf ./dist && NODE_ENV=production ./node_modules/.bin/webpack"
},
"author": "Kellie Kercher Morgan",
"license": "MIT",
"dependencies": {
"html-webpack-plugin": "^2.28.0",
"path": "^0.12.7",
"autoprefixer": "^6.3.1",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.2.0",
"express": "^4.13.4",
"postcss-loader": "^0.8.0",
"precss": "^1.4.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
}
}