-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 964 Bytes
/
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
{
"name": "emoji-encode",
"homepage": "http://mediaupstream.github.io/emoji-encode",
"version": "0.1.0",
"private": true,
"dependencies": {
"bulma": "^0.7.1",
"emoji-mart": "^2.8.1",
"node-sass-chokidar": "^1.3.3",
"query-string": "5",
"react": "^16.4.2",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.4.2",
"react-scripts": "1.1.5",
"styled-components": "^3.4.5"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^2.0.0"
}
}