This repository has been archived by the owner on Jun 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "fe-template",
"productName": "Website Template",
"version": "4.5.0",
"description": "Boilerplate for the Single Page Application. Everything is already set up and ready to use.",
"main": "index.html",
"scripts": {
"start": "ws",
"browserify": "browserify ./src/js/main.js -o ./src/js/transformed.js --debug",
"build": "npm run browserify && gulp && node ./src/js/sitemap",
"eslint": "eslint --init",
"test": "ava --verbose ./test/main.test.js",
"babel": "babel ./src/js/app.js -d babel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VladimirDev93/Website-Template.git"
},
"author": "Vladimir Jovanovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/VladimirDev93/Website-Template/issues"
},
"engines": {
"node": "LTS",
"npm": "latest"
},
"homepage": "https://github.com/VladimirDev93/Website-Template#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"autoprefixer": "^9.7.4",
"ava": "^3.1.0",
"babel-cli": "^6.26.0",
"bootstrap": "^4.4.1",
"browserify": "^16.5.0",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-minify-html": "^1.0.6",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"local-web-server": "^3.0.7",
"navigo": "^7.1.2",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"precss": "^4.0.0",
"sitemap": "^5.1.0",
"uglify-es": "^3.3.9"
},
"postcss": {
"plugins": {
"postcss-nested": {},
"postcss-preset-env": {},
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
},
"parser": "postcss-safe-parser"
},
"dependencies": {}
}