-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
61
62
{
"name": "stej-clock",
"version": "0.1.2",
"description": "A simple clock to demo the seven-segment-display.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/stejsoftware/stej-clock"
},
"files": [
"src/",
"public/",
"public/dist/"
],
"scripts": {
"build": "npm-run-all build:*",
"build:node": "webpack --progress --colors",
"watch": "npm-run-all --parallel watch:*",
"watch:node": "webpack --watch --devtool source-map --progress --colors",
"test": "eslint src",
"prebuild": "shx rm -rf ./public/dist",
"prepare": "npm run build",
"start": "http-server public"
},
"keywords": [
"react",
"clock",
"svg"
],
"author": "Jonathan Meyer <jon@stej.com>",
"license": "ISC",
"dependencies": {
"http-server": "^0.10.0",
"seven-segment-display": "^0.2.0"
},
"devDependencies": {
"moment": "^2.18.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"shx": "^0.2.2",
"style-loader": "^0.18.2",
"webpack": "^3.5.5"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
}