-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-sample.json
31 lines (31 loc) · 1.02 KB
/
package-sample.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
{
"name": "sample",
"version": "0.0.1",
"description": "Sample",
"scripts": {
"start": "yarn build",
"test": "yarn lint && yarn cover",
"test:update": "yarn lint && yarn cover:update",
"lint": "eslint src/**/**/*.js && eslint __tests__/**/**/*.js",
"cover": "jest --coverage",
"cover:update": "jest --coverage --updateSnapshot",
"develop": "webpack --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.config.js"
},
"author": "Technote <technote.space@gmail.com> (https://technote.space)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"jest": "^24.8.0",
"speed-measure-webpack-plugin": "^1.3.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
}
}