forked from turingschool-examples/whats-cookin-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 789 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
{
"name": "whats-cookin",
"version": "1.0.0",
"description": "Starter kit for Turing FE2 paired project",
"main": "index.js",
"devDependencies": {
"chai": "^4.2.0",
"css-loader": "^5.0.1",
"eslint": "^7.17.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"mocha": "^8.2.1",
"mochapack": "^2.0.6",
"node-sass": "^6.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test": "mochapack 'test/**/*.js'",
"lint": "./node_modules/.bin/eslint 'src/**.js' 'test/**.js'"
},
"author": "Turing School of Software and Design",
"license": "MIT"
}