forked from varbee/teamWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 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
{
"name": "teamWebsite",
"version": "1.0.0",
"description": "teamWebsite with webpack and jQuery",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --port 8081 --hot --inline --progress --colors --devtool eval",
"build": "webpack --display-error-details",
"watch": "webpack --progress --colors --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"jquery": "^3.1.1",
"mustache-loader": "^0.3.0",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.1",
"scss-loader": "0.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"jquery": "^3.1.1"
}
}