-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
89 lines (89 loc) · 3.08 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": "bw-axiom",
"description": "Axiom - Brandwatch Pattern Library",
"version": "0.0.2",
"main": "./lib",
"license": "MIT",
"homepage": "BrandwatchLtd.github.io/axiom",
"bugs": {
"url": "https://github.com/BrandwatchLtd/axiom/issues"
},
"files" : [ "static","lib" ],
"repository": {
"type": "git",
"url": "https://github.com/BrandwatchLtd/axiom.git"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build-resources": "NODE_ENV=production BABEL_ENV=production webpack --config webpack.resources.config.js",
"build-static": "NODE_ENV=production BABEL_ENV=production webpack --config webpack.static.config.js",
"gh-pages": "BASENAME_ENV=\"'/axiom/'\" yarn build-static && gh-pages -d ./static",
"lint": "yarn run lint-js && yarn run lint-sass",
"lint-js": "eslint --config .eslintrc ./src ./style-guide",
"lint-sass": "sass-lint --config .sass-lint.yml -v",
"prepublish": "rm -rf ./lib && yarn prepublish-js && yarn prepublish-sass",
"prepublish-js": "NODE_ENV=production BABEL_ENV=production babel ./src --ignore example,*.test.js --out-dir ./lib",
"prepublish-sass": "rsync -a --prune-empty-dirs --include '*/' --include '*.scss' --exclude '*' ./src/* ./lib",
"start": "webpack-dev-server --port 4000 --inline --hot --history-api-fallback --content-base style-guide/",
"test": "NODE_ENV=production BABEL_ENV=production jest --config .jest.json"
},
"dependencies": {
"classnames": "^2.2.1",
"lodash.omit": "^4.5.0",
"moment": "^2.14.1",
"normalize.css": "^4.2.0",
"react-modal": "^1.4.0"
},
"peerDependencies": {
"react": "^15.4.1"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel": "6.5.2",
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-inline-replace-variables": "^1.1.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"clean-webpack-plugin": "^0.1.14",
"compression-webpack-plugin": "^0.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.1",
"ejs": "^2.5.2",
"ejs-loader": "^0.3.0",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.24.1",
"humanize-string": "^1.0.1",
"jest": "^18.0.0",
"js-beautify": "^1.6.2",
"json-loader": "0.5.4",
"lodash.isplainobject": "^4.0.6",
"lodash.uniq": "^4.5.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"prismjs": "^1.4.1",
"react": "^15.4.1",
"react-docgen": "^2.12.1",
"react-dom": "^15.4.1",
"react-element-to-jsx-string": "^6.0.0",
"react-router": "2.6.1",
"react-test-renderer": "^15.4.1",
"sass-lint": "^1.10.0",
"sass-loader": "^3.1.2",
"static-site-generator-webpack-plugin": "^3.0.0",
"style-loader": "^0.13.1",
"uuid": "^2.0.1",
"webpack": "^1.13.1",
"webpack-dev-server": "1.14.1"
}
}