-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "webrtc-chat",
"version": "1.0.0",
"description": "A simple chat application based on WebRTC",
"repository": "https://github.com/sutherlanda/webrtc-chat.git",
"author": "Andrew Sutherland <sutherlanda@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"compile": "echo Typescript && tsc -v && webpack && echo Compile complete",
"build": "tsc -v && npm run sass && webpack && echo Build complete",
"sass": "node-sass src/styles/styles.scss public/dist/styles.css",
"sass-watch": "npm run sass -- -w",
"watch": "echo Typescript && tsc -v && webpack -w",
"start": "http-server -p 5666",
"lint": "tslint 'src/**/*.{ts,tsx}' -t stylish && echo Linting complete"
},
"dependencies": {
"mapbox-gl": "^0.45.0",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@types/mapbox-gl": "^0.44.4",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"dotenv": "^5.0.1",
"http-server": "^0.11.1",
"node-sass": "^4.9.0",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}