-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
{
"name": "javascript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start:dev": "webpack serve --config webpack.config.js",
"test": "npx mocha \"src/**/*.test.js\" --recursive --require @babel/register",
"test:watch": "npx mocha \"src/**/*.test.js\" --recursive --require @babel/register --watch",
"coverage": "nyc --reporter=lcov --reporter=text npm run test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.6",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"bulma": "^0.9.3",
"chai": "^4.3.4",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"cssnano": "^5.0.6",
"eslint": "^7.32.0",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"postcss-loader": "^6.1.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.11.1"
}
}