-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "oshwa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">= v18.9.0",
"npm": ">= 8.19.1"
},
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"lint": "eslint ./source/_js/**/*.js",
"test": "mocha $(find spec -name '*.js') --exit",
"build": "gulp build",
"mocha-watch": "mocha -w --recursive $(find spec -name '*.js')",
"dev": "gulp"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"compression-webpack-plugin": "^9.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-changed": "^4.0.3",
"gulp-clean-css": "^4.3.0",
"gulp-gh-pages": "github:shinnn/gulp-gh-pages",
"gulp-htmlmin": "^5.0.1",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^5.1.0",
"gulp-shell": "^0.8.0",
"gulp-spawn-mocha": "^6.0.0",
"jquery": "^3.6.0",
"jsdom": "^16.7.0",
"jsdom-global": "3.0.2",
"mocha": "^6.2.3",
"prettier": "^2.4.1",
"sass": "^1.47.0",
"terser-webpack-plugin": "^5.3.0",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"browser-cookies": "^1.2.0",
"browser-sync": "^2.27.7",
"gulp-rename": "^2.0.0",
"natives": "^1.1.6"
}
}