-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "project-b",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./build.sh",
"dev": "./dev.sh",
"deploy": "npm run build && node ./scripts/deploy --target=production",
"deploy-staging": "npm run build && node ./scripts/deploy",
"lint": "eslint src/js/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cd node_modules/neal-react && npm install",
"start": "forever start server.js -p 80",
"start-dev": "forever start server.js -p 3000",
"stop": "forever stopall"
},
"author": "",
"license": "ISC",
"dependencies": {
"animate.css": "^3.5.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bourbon": "^4.2.7",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"contentful": "^3.8.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"forever": "^0.15.3",
"html-webpack-plugin": "^2.24.1",
"lodash": "^4.17.3",
"neal-react": "^0.2.5",
"node-sass": "^4.1.1",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-fa": "^5.0.0",
"react-html5video": "^1.4.0",
"react-markdown": "^2.5.0",
"react-router": "^3.0.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"util": "^0.10.3",
"webpack": "^1.14.0"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^1.1.4",
"ftp-deploy": "^1.2.2",
"json-loader": "^0.5.7",
"minimist": "^1.2.0",
"react-async-script-loader": "^0.3.0"
}
}