-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "asg-attendance",
"version": "0.0.1",
"description": "Athena Security Group attendance Web application",
"author": "Jonathan M. Lane <jonathan@thinkingbig.net>",
"license": "ISC",
"homepage": "https://github.com/jmlane/asg-attendance#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jmlane/asg-attendance.git"
},
"bugs": {
"url": "https://github.com/jmlane/asg-attendance/issues"
},
"config": {
"entry": "src/",
"output": "dist/",
"static": "public/"
},
"scripts": {
"bundle:server": "webpack --config webpack.server.js",
"bundle:client": "webpack --config webpack.client.js",
"bundle": "webpack",
"start": "node dist/server.js",
"test": "mocha --compilers js:babel-register"
},
"dependencies": {
"express": "^4.13.4",
"openid": "^2.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.5.2",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"react-hot-loader": "^1.3.0",
"shelljs": "^0.6.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.0.0"
}
}