-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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": "occupied.city",
"repository": {
"type": "git",
"url": "git://github.com/webful-ltd/occupied-city.git"
},
"license": "MIT",
"homepage": "https://occupied.city",
"version": "1.0.0",
"authors": [
"Noel Light-Hilary <noel@noellh.com>"
],
"description": "Occupied City is an AngularJS web app that lets you visualise an occupation of your city.",
"main": "src/js/app.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --watch --config webpack.config.js"
},
"dependencies": {
"angular": "^1.8",
"angular-aria": "^1.8",
"angular-leaflet-directive": "~0.10.0",
"angular-ui-router": "^1.0",
"angulartics-google-analytics": "~0.5.0",
"font-awesome": "^4.3",
"leaflet": "~0.7.7",
"leaflet-pip": "^1.1.0",
"leaflet.awesome-markers": "^2.0"
},
"devDependencies": {
"angular-mocks": "^1.8",
"angulartics": "^1.6.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"karma-jasmine": "^4.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": ">=14"
}
}