-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "brainhubeu.github.io",
"version": "1.0.5",
"description": "Static site with open source packages created by Brainhub team",
"license": "MIT",
"homepage": "https://brainhubeu.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/brainhubeu/brainhubeu.github.io.git"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-scripts": "^3.4.1"
},
"devDependencies": {
"@brainhubeu/react-carousel": "^1.19.14",
"axios": "^0.19.2",
"base-64": "^0.1.0",
"classnames": "^2.2.6",
"eslint-config-brainhub": "1.13.0",
"gh-pages": "^3.1.0",
"lodash.debounce": "^4.0.8",
"mark-to-jsonml": "^0.5.0",
"node-sass": "^4.14.1"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"build": "yarn sass:build && react-scripts build",
"eject": "react-scripts eject",
"sass:watch": "node-sass -w src/styles/scss -o src/styles/css",
"sass:build": "node-sass src/styles/scss -o src/styles/css --source-map true",
"start": "yarn run sass:build && react-scripts start",
"lint": "eslint --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"test": "react-scripts test --env=jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}