-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "",
"version": "0.0.1",
"scripts": {
"build": "gulp --isProduction true",
"start": "gulp watch",
"watch": "gulp watch",
"precommit": "lint-staged",
"prettier": "prettier --write \"src/js/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://[email protected]/448jp/project.git"
},
"lint-staged": {
"*.{sass,scss}": [
"sass-lint -v -q",
"git add"
],
"*.js": [
"prettier",
"git add"
]
},
"author": "OKI Yoshiya <[email protected]> (http://ceroan.jp/)",
"private": true,
"dependencies": {
"gsap": "^1.20.3",
"jquery": "^3.2.1",
"normalize.css": "^7.0.0",
"picturefill": "^3.0.2",
"scrollmagic": "^2.0.5",
"vue": "^2.5.13"
},
"devDependencies": {
"assemble": "^0.24.3",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browser-sync": "^2.18.12",
"browserify": "^14.4.0",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-extname": "^0.2.2",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.3.2",
"gulp-size": "^2.1.0",
"gulp-stylelint": "^5.0.0",
"gulp-util": "^3.0.8",
"handlebars": "^4.0.10",
"handlebars-helpers": "^0.10.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"minimist": "^1.2.0",
"prettier": "^1.7.4",
"require-dir": "^0.3.2",
"run-sequence": "^2.2.0",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.6",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-scss": "^2.1.0",
"vinyl-source-stream": "^1.1.0",
"vue-loader": "^13.6.0",
"vue-template-compiler": "^2.5.13",
"watchify": "^3.9.0",
"webpack": "^3.4.1"
}
}