-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 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
{
"name": "fusion",
"version": "1.0.0",
"description": "A collection of React Components built with Emotion.js",
"main": "index.js",
"dependencies": {
"chart.js": "^2.7.1",
"classnames": "^2.2.5",
"emotion": "^8.0.12",
"next": "^5.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.2.0",
"react-emotion": "^8.0.12",
"react-live": "^1.9.2",
"rimraf": "^2.6.2",
"theming": "^1.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^9.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "1.10.2",
"prettier-eslint-cli": "^4.7.0",
"react-styleguidist": "^6.2.5",
"webpack": "^3.10.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"prestart": "npm run clean && npm run build",
"start": "next start",
"heroku-next-start": "next start -p $PORT",
"heroku-start": "npm run clean && npm run build && npm run heroku-next-start",
"clean": "rimraf .next docs ",
"lint": "eslint pages fusion lib theme",
"format-staged": "prettier-eslint --single-quote --trailing-comma es5 --write",
"lint-staged": "eslint --fix",
"test": "npm run lint",
"heroku-postbuild": "npm run build",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --trailing-comma es5 --write '{lib,fusion,pages,theme}/**/*.js'",
"format": "prettier-eslint --single-quote --trailing-comma es5 --write '{lib,fusion,pages,theme}/**/*.js'"
},
"lint-staged": {
"*.{js,jsx,css,md}": [
"npm run format-staged",
"git add"
],
"*.{js,jsx}": [
"npm run lint-staged",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagesource/fusion.git"
},
"author": "PageSource",
"license": "MIT",
"bugs": {
"url": "https://github.com/pagesource/fusion/issues"
},
"homepage": "https://sape-fusion.herokuapp.com/",
"engines": {
"node": "^8.9.3"
}
}