-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "@speedtracker/dashboard",
"version": "0.10.0",
"description": "Website performance monitoring tool",
"main": "bundle.js",
"scripts": {
"build": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js -p --mode=production",
"lint": "standard --verbose | snazzy",
"prepublishOnly": "npm run build",
"serve": "webpack-dev-server --mode=development",
"start": "npm-run-all --parallel serve watch",
"watch": "./node_modules/webpack/bin/webpack.js --watch --mode=development"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
},
"repository": "speedtracker/speedtracker",
"author": "Eduardo Bouças <[email protected]> (https://eduardoboucas.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"chart.js": "^2.2.2",
"es6-promise": "^3.3.1",
"npm-run-all": "^4.1.5",
"query-string": "^4.2.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"snazzy": "^7.0.0",
"standard": "^10.0.1",
"styled-components": "^4.1.3",
"webpack": "^4.0.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"whatwg-fetch": "^1.0.0"
},
"dependencies": {
"js-yaml": "^3.12.0"
}
}