forked from drevops/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) Β· 934 Bytes
/
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
{
"name": "your_site",
"version": "1.0.0",
"private": true,
"description": "NPM dependencies for YOURSITE project",
"devDependencies": {
"autoprefixer": "~9.7.0",
"eslint": "^6.6.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.1.0",
"grunt-sass-globbing": "^1.5.1",
"grunt-sass-lint": "^0.2.4",
"gruntify-eslint": "5.0.0",
"node-sass": "^4.13.0",
"patch-package": "^6.2.2",
"sass-lint": "^1.13.1"
},
"browserslist": [
"last 2 versions",
"not ie <= 8",
"iOS >= 7"
],
"scripts": {
"build": "grunt",
"build-dev": "grunt dev",
"lint": "grunt lint",
"watch": "grunt watch",
"postinstall": "patch-package"
}
}