-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@mxdubois/website",
"version": "3.1.2",
"description": "The website of mxdubois",
"repository": {
"type": "git",
"url": "https://github.com/iansinnott/react-static-boilerplate"
},
"bugs": {
"url": "https://github.com/iansinnott/react-static-boilerplate/issues"
},
"author": "Ian Sinnott <ian@iansinnott.com> (http://iansinnott.com)",
"license": "MIT",
"homepage": "",
"engines": {
"node": "^6.9.1"
},
"devDependencies": {
"app-time": "^0.10.2",
"babel-eslint": "^7.1.1",
"cross-env": "^3.1.3",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-zen": "^2.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"prettier": "^1.5.3",
"rimraf": "^2.5.2"
},
"dependencies": {
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"history": "^4.5.0",
"jsgif": "^1.0.2",
"lodash.debounce": "^4.0.8",
"memoizee": "^0.4.5",
"normalize.css": "^5.0.0",
"position": "git://github.com/ubergrape/position.git#129e053a3ec018d74313476ab43f02ff83de1f5c",
"prop-types": "^15.5.8",
"ramda": "^0.24.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^3.0.0",
"react-sticky": "^6.0.1",
"shallowequal": "^1.0.2",
"uuid": "^3.1.0"
},
"apptime": {
"vendorLibs": [
"core-js",
"classnames",
"history",
"react",
"react-dom",
"react-router"
]
},
"scripts": {
"postinstall": "app-time setup",
"start": "app-time start",
"start:dashboard": "app-time start --dashboard",
"prebuild": "rimraf build",
"deploy:github": "git subtree push --prefix build origin master",
"build": "app-time build",
"build:analyze": "app-time build --analyze",
"eject": "app-time eject",
"lint": "$(yarn bin)/eslint .",
"lint:fix": "$(yarn bin)/eslint --fix .",
"conf": "node ./scripts/generate-nginx-conf.js",
"test": "echo 'No tests specified.'",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"bump:patch": "npm version patch -m \"v%s\"",
"bump:minor": "npm version minor -m \"v%s\"",
"bump:major": "npm version major -m \"v%s\"",
"bump": "npm run bump:patch"
}
}