-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.16 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
{
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@parcel/babel-preset-env": "^2.2.0",
"@parcel/transformer-pug": "^2.2.0",
"@parcel/transformer-sass": "^2.2.0",
"@types/jest": "^27.4.0",
"@types/jquery": "^3.5.13",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^27.4.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-jest": "^25.3.4",
"gh-pages": "^3.2.3",
"jest": "^27.4.6",
"parcel": "^2.2.0",
"sass": "^1.41.1",
"ts-jest": "^27.1.2",
"typescript": "^4.4.3"
},
"scripts": {
"test": "jest",
"dev": "parcel src/index/index.pug --no-cache",
"build": "parcel build src/index/index.pug --public-url .",
"build-plugin": "parcel build src/slider/jquery.slider.js --dist-dir prod",
"lint": "eslint src --ext .ts,.js tests/**/*.js",
"deploy": "gh-pages -d dist"
}
}