forked from L4GG/timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "timeline",
"version": "1.0.0",
"description": "Microsite to display events compiled by Lawyers for Good Government Volunteers.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress --colors --watch",
"prod": "npm run build && NODE_ENV=production node server.js",
"build": "NODE_ENV=production webpack",
"create": "node create-event.js"
},
"repository": {
"type": "git",
"url": "https://github.com/L4GG/timeline.git"
},
"author": "Lawyers for Good Government <[email protected]> (https://lawyersforgoodgovernment.org)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-stage-2": "^6.22.0",
"babili-webpack-plugin": "0.0.11",
"css-loader": "^0.26.2",
"dir-loader": "^0.3.0",
"file-loader": "^0.10.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.2",
"script-loader": "^0.7.0",
"style-loader": "^0.13.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"TimelineJS3": "github:L4GG/TimelineJS3",
"case": "^1.4.2",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"lodash": "^4.17.4",
"moment": "^2.17.1"
}
}