-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "tinyChatr",
"version": "",
"description": "client-side real-time cha5 app",
"scripts": {
"lint": "eslint --ext .jsx,.js src",
"dev": "parcel index.html -p 3000",
"build": "parcel build index.html",
"start": "parcel build index.html && node ws-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/noahlotzer/react-simple-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"reload",
"live",
"edit"
],
"author": "Jerry Huang",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"eslint": "3.15.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "6.9.0",
"node-sass": "4.5.0",
"parcel-bundler": "^1.12.3",
"prettier-eslint": "^8.8.2",
"sass": "^1.18.0",
"sockjs-client": "^1.1.2"
},
"dependencies": {
"express": "^4.16.4",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uuid": "^3.3.2",
"ws": "^6.2.1"
}
}