-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.73 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
84
85
86
87
88
89
{
"name": "bloom-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "rm -rf dist/*.js && ./node_modules/.bin/webpack && ./node_modules/.bin/webpack-dev-server --hot --inline",
"build": "rm -rf dist/*.js && ./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint './src/**/*.{js,jsx}' './tests/**/*.js' --config ./.eslintrc --fix --ext .js,.jsx --ignore-path ./.eslintignore",
"lint-staged": "./node_modules/.bin/eslint --fix --ignore-path ./.eslintignore",
"prettify": "node ./scripts/cross-os-prettier.js",
"prettify-staged": "prettier --config .prettierrc --write",
"test": "./node_modules/.bin/mocha tests/** --compilers js:babel-core/register tests/helpers/virtual-dom.js",
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run prettify-staged",
"npm run lint-staged",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"author": "inkblotty",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bignumber.js": "^5.0.0",
"bloom-forms": "^2.0.0",
"bloom-inputs": "^1.0.6",
"bloom-layout": "^1.1.0",
"botp": "^2.3.2",
"buttercms": "^1.1.0",
"clipboard": "^1.7.1",
"copy-webpack-plugin": "^4.0.1",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.8",
"file-loader": "^1.1.6",
"history": "^4.6.1",
"html-loader": "^0.5.4",
"html-webpack-externals-plugin": "^3.6.0",
"html-webpack-plugin": "^2.30.1",
"immer": "^1.1.0",
"moment": "^2.18.1",
"node-sass": "^4.0.0",
"postcss-loader": "^2.0.7",
"prop-types": "^15.6.0",
"qrcode.react": "^0.7.1",
"raw-loader": "^0.5.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.6",
"react-router": "^4.1.1",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.2.2",
"react-svg-inline": "^2.0.1",
"react-transition-group": "^2.2.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.15.0-rc.2",
"mocha": "^5.0.1",
"prettier": "1.10.2",
"lint-staged": "^7.0.0"
},
"optionalDependencies": {
"webpack-dev-server": "^2.10.1"
}
}