forked from turingschool-examples/webpack-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 854 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
{
"name": "webpack-starter-kit",
"version": "2.0.0",
"description": "Project starter kit using webpack, mocha, chai, and SCSS/SASS enabled",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/turingschool-examples/webpack-starter-kit.git"
},
"author": "Turing School of Software and Design",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"file-loader": "^6.2.0",
"mocha": "^10.2.0",
"mochapack": "^2.1.2",
"style-loader": "^3.3.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"lint": "./node_modules/.bin/eslint 'src/**.js' 'test/**.js'"
}
}