forked from ejfn/send-to-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 988 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
31
32
33
{
"name": "send-to-webhook",
"version": "0.1.0",
"private": true,
"dependencies": {
"query-string": "^6.1.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-ga": "^2.5.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts-ts start",
"build-js": "react-scripts-ts build",
"start": "npm-run-all -p watch-css start-js",
"build": "npm-run-all build-css build-js",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/chrome": "^0.0.86",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@types/query-string": "^6.3.0",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"react-scripts-ts": "3.1.0",
"typescript": "^3.5.3"
}
}