-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "sapling-chain",
"version": "1.1.1",
"description": "Create a tree of hyperlinks that can be used in social media profiles. 🔗🌲😂",
"author": "Chris Reynolds <[email protected]>",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"main": "index.js",
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/jazzsequence/jazzsequence.github.io.git"
},
"bugs": {
"url": "https://github.com/jazzsequence/jazzsequence.github.io/issues"
},
"keywords": [
"react",
"links",
"profile",
"social",
"media"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --prefix name \"npm run start\" \"npm run watch\"",
"start": "react-scripts start",
"build": "npm run build:css && react-scripts build",
"deploy": "gh-pages -d build",
"predeploy": "npm run build",
"build:css": "gulp build",
"watch": "gulp watch"
},
"dependencies": {
"gh-pages": "^4.0",
"react": "^17.0",
"react-dom": "^17.0",
"sass": "^1.56"
},
"devDependencies": {
"concurrently": "^7.0",
"del": "^6.0",
"gulp": "^4.0",
"gulp-sass": "^5.1.0",
"node-sass": "^7.0",
"react-scripts": "^4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}