-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "know-it-all",
"version": "34.0.0",
"description": "If you don't know it all, at least know what you don't know",
"scripts": {
"lint": "eslint ./app --color --ext .jsx,.js",
"dev": "nodemon app/buildTools/dev.entry.js",
"build": "node app/buildTools/prod.entry.js",
"start": "node app/static-server.js",
"bump": "npm version major && npm run build",
"deploy": "firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidgilbertson/know-it-all.git"
},
"author": "David Gilbertson",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidgilbertson/know-it-all/issues"
},
"homepage": "https://know-it-all.io",
"dependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.9.1",
"babel-preset-babili": "0.0.9",
"babel-preset-env": "^1.1.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.11.6",
"babili-webpack-plugin": "0.0.7",
"compression": "^1.6.2",
"css-loader": "0.26.1",
"eslint": "^3.12.0",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"fs-extra": "1.0.0",
"html-minifier": "3.2.3",
"jsdom": "9.9.1",
"localforage": "^1.4.3",
"node-sass": "3.13.0",
"nodemon": "^1.11.0",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"stylelint": "7.6.0",
"sw-precache": "4.2.3",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"whatwg-fetch": "2.0.1"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"latest"
]
}
}