-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "Tic-Tac-Toe game",
"main": "gulpfile.js",
"dependencies": {
"gulp": "^3.9.1",
"browserify": "^13.3.0",
"tsify": "^3.0.0",
"vinyl-source-stream": "^1.1.0",
"gulp-watch": "^4.3.11",
"gulp-autoprefixer": "^3.1.1",
"gulp-uglify": "^2.0.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-rigger": "^0.5.8",
"gulp-clean-css": "^2.3.2",
"rimraf": "^2.5.4",
"browser-sync": "^2.18.6",
"gulp-imagemin": "^3.1.1",
"imagemin-pngquant" : "^5.0.0",
"typescript": "^2.1.5",
"jquery": "^3.1.1"
},
"devDependencies": { },
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"lite": "lite-server",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LefkaLefka/LefkaLefka.github.io.git"
},
"author": "LefkaLefka",
"license": "ISC",
"bugs": {
"url": "https://github.com/LefkaLefka/LefkaLefka.github.io/issues"
},
"homepage": "https://github.com/LefkaLefka/LefkaLefka.github.io#readme"
}