-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "angular-1-x-app",
"version": "1.0.0",
"description": "A demo application built on angular 1.x components, Typescript, ES2017, ui-router",
"author": "Maurizio Cescon <[email protected]>",
"homepage": "https://be.linkedin.com/in/mauriziocescon",
"private": false,
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
},
"scripts": {
"postinstall": "npm run build",
"start": "cross-env NODE_ENV=production npm run json-server",
"json-server": "node ./mock-server/server.js",
"json-server-watch": "nodemon --ext js --watch ./mock-server ./mock-server/server.js",
"serve": "webpack serve --progress --color --env name=dev --config webpack.config.js | npm run json-server-watch",
"build": "webpack --progress --profile --color --env name=prod",
"pretest": "webpack --progress --profile --color --env name=test",
"test": "karma start karma.conf.js",
"test-api": "jest rest-api-tests",
"bundle-analyzer": "webpack-bundle-analyzer ./dist/stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriziocescon/angularjs-app"
},
"keywords": [
"angularjs",
"bootstrap",
"cescon",
"es2017",
"frisby",
"json-server",
"karma",
"maurizio",
"sass",
"travis",
"typescript",
"vendor",
"webpack"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT"
}
],
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"angular": "1.8.3",
"angular-animate": "1.8.3",
"angular-dynamic-locale": "0.1.32",
"angular-i18n": "1.8.3",
"angular-loading-bar": "0.9.0",
"angular-mocks": "1.8.3",
"angular-sanitize": "1.8.3",
"angular-stats": "1.2.4",
"angular-translate": "2.19.1",
"angular-translate-loader-static-files": "2.19.1",
"angular-translate-storage-local": "2.19.1",
"angular-ui-bootstrap": "2.5.6",
"angular-ui-router": "0.4.3",
"bootstrap-sass": "3.4.3",
"ng-infinite-scroll": "1.3.0",
"parse-link-header": "2.0.0",
"querystring-es3": "0.2.1",
"roboto-fontface": "0.10.0",
"stacktrace-js": "2.0.2",
"url": "0.11.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@types/angular": "^1.8.8",
"@types/angular-animate": "^1.5.14",
"@types/angular-dynamic-locale": "0.1.34",
"@types/angular-loading-bar": "^0.0.39",
"@types/angular-mocks": "^1.7.4",
"@types/angular-sanitize": "^1.8.4",
"@types/angular-translate": "^2.19.3",
"@types/angular-ui-bootstrap": "^1.0.6",
"@types/angular-ui-router": "^1.1.44",
"@types/jasmine": "^5.1.2",
"@types/node": "^20.9.0",
"@types/parse-link-header": "^2.0.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-webpack-plugin": "^4.0.1",
"expose-loader": "^5.0.0",
"faker": "^5.5.3",
"frisby": "^2.1.3",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jasmine-core": "^5.1.1",
"jest": "^29.7.0",
"json-server": "^0.17.4",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.0.0",
"karma-spec-reporter": "^0.0.36",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^16.0.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-webpack-plugin": "^5.0.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^6.0.1"
}
}