-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 773 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 773 Bytes
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": "pennapps-mini-hackathon",
"version": "1.0.0",
"description": "A mini angry birds implementation written in javascript",
"main": "app.js",
"scripts": {
"start": "npm run build & node server.js",
"start:dev": "webpack-dev-server",
"build": "webpack"
},
"keywords": [
"javascript",
"angry",
"birds",
"physics",
"stub",
"implementation",
"webpack"
],
"author": "Abhinav Suri",
"license": "MIT",
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"jquery": "^3.1.0",
"script-loader": "^0.7.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
}
}