-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "vue-ish",
"description": "A bare-bones implementation of Vue.js-like reactivity",
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack-dev-server --open --hot",
"build": "webpack --env.production && node scripts/post-build.js",
"lint": "eslint --ext .js src test scripts",
"lint:autofix": "yarn lint --fix",
"test": "jest",
"test:cover": "yarn test --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"@(?!babel|jest)(.*)$": "<rootDir>/src/$1"
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "4.0.0-beta.1",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pnp-webpack-plugin": "^1.5.0",
"prettier": "^1.18.2",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}