-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 929 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
{
"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",
"jest": "^29.7.0",
"mocha": "^8.4.0",
"mochapack": "^2.1.2",
"sass": "^1.34.0",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"lint": "./node_modules/.bin/eslint 'src/**.js' 'test/**.js'"
}
}