-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
43 lines (43 loc) · 981 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
38
39
40
41
42
43
{
"name": "grepolis",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon",
"build": "node build.js --version"
},
"author": "",
"license": "ISC",
"devDependencies": {
"del": "^7.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-footer": "^2.1.0",
"gulp-uglify": "^3.0.2",
"through2": "^4.0.2"
},
"dependencies": {
"@types/jquery": "^3.5.16",
"gulp-insert": "^0.5.0"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 400,
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"semi": true,
"arrowParens": "avoid",
"bracketSameLine": false
},
"nodemonConfig": {
"watch": [
"new"
],
"ext": "js,css",
"exec": "node build.js"
}
}