-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bernardodiasc",
"version": "1.0.0",
"description": "Bernardo Dias da Cruz",
"private": true,
"repository": "git+https://github.com/bernardodiasc/bernardodiasc.github.io.git",
"author": "Bernardo Dias <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bernardodiasc/bernardodiasc.github.io/issues"
},
"homepage": "https://bernardodiasdacruz.com",
"scripts": {
"new:component": "node src/config/componentGenerator.js",
"new:content": "node src/config/contentGenerator.js",
"content": "./node_modules/.bin/filestojson src/config/filestojson.js",
"sitemap": "./node_modules/.bin/babel-node src/config/sitemap.js",
"precommit": "lint-staged",
"prestart": "npm run content",
"start": "react-scripts start",
"prebuild": "npm run content && npm run sitemap",
"build": "react-scripts build && react-snap",
"postbuild": "yarn docs:build",
"test": "react-scripts test --env=jsdom --testPathIgnorePatterns=src/config/",
"test:staged": "cross-env CI=true react-scripts test --env=jsdom --testPathIgnorePatterns=src/config/ --findRelatedTests",
"lint": "./node_modules/.bin/eslint src && ./node_modules/.bin/stylelint src/**/*.css",
"eject": "react-scripts eject",
"docs": "export NODE_PATH=src && start-storybook -p 9009 -s public",
"docs:build": "export NODE_PATH=src && build-storybook -s public -o build/docs",
"serve": "serve -s build",
"deploy": "gh-pages -d build -b master --dotfiles"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"src/**/*.css": [
"stylelint",
"git add"
]
},
"engines": {
"node": ">= 8.6.0"
},
"dependencies": {
"classnames": "^2.2.5",
"d3": "^3.5.17",
"disqus-react": "^1.0.4",
"fecha": "^2.3.3",
"filestojson": "^1.0.2",
"highlight.js": "^9.12.0",
"husky": "^0.14.3",
"json-loader": "^0.5.7",
"lint-staged": "^6.1.0",
"markdown-to-jsx": "^6.6.1",
"marked": "^0.3.12",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-lottie": "^1.1.0",
"react-redux": "^5.0.6",
"react-render-html": "^0.6.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-select": "^1.2.1",
"react-share": "^2.0.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"rel-to-abs": "^0.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.11",
"@storybook/addon-knobs": "^3.3.11",
"@storybook/addon-links": "^3.3.11",
"@storybook/addon-options": "^3.3.11",
"@storybook/addons": "^3.3.11",
"@storybook/react": "^3.3.11",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"ejs": "^2.5.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-react": "^7.6.1",
"gh-pages": "^1.1.0",
"jest-enzyme": "^4.1.1",
"react-snap": "^1.11.3",
"react-test-renderer": "^16.2.0",
"serve": "^6.4.11",
"sitemap": "^1.13.0",
"storybook-router": "^0.3.2",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0"
}
}