-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 948 Bytes
/
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
{
"name": "actions-template",
"version": "1.0.0",
"description": "Learn how to use GitHub Actions!",
"main": "index.js",
"directories": {
"test": "__test__",
"src": "src"
},
"scripts": {
"build": "npx webpack --config ./src/webpack.config.js --mode production",
"dev": "npx webpack --config ./src/webpack.config.js --mode development --watch",
"test": "npx standard && npx jest"
},
"author": "githubtraining",
"license": "MIT",
"standard": {
"env": [
"jest",
"browser"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"standard": "^14.3.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {}
}