This repository was archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
55
56
57
{
"name": "angularjs-starter",
"version": "1.0.0",
"description": "angularjs-starter",
"private": true,
"scripts": {
"build": "webpack --config ./config/webpack/webpack.development",
"build:production": "webpack --config ./config/webpack/webpack.production",
"start": "webpack-dev-server --config ./config/webpack/webpack.development",
"lint-scripts": "eslint -f stylish 'src/**/*.js'",
"lint-views": "pug-lint src/app/**/*.pug",
"lint": "npm run lint-scripts && npm run lint-views"
},
"dependencies": {
"angular": "^1.7.9",
"angular-route": "^1.7.9",
"bootstrap": "^4.4.1",
"lodash": "^4.17.15",
"popper.js": "^1.16.1",
"spinkit": "^1.2.5",
"toastr": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"progress-bar-webpack-plugin": "^2.1.0",
"pug-html-loader": "^1.1.5",
"pug-lint": "^2.6.0",
"raw-loader": "^4.0.0",
"require-dir": "^1.2.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2",
"webpack-notifier": "^1.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexanderMac/angularjs-starter"
},
"author": "Alexander Mac",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexanderMac/angularjs-starter/issues"
},
"homepage": "https://github.com/AlexanderMac/angularjs-starter"
}