-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "map-collab-client",
"version": "1.0.0",
"description": "A simple chat map collaboration client",
"repository": "https://github.com/sutherlanda/map-collab-client.git",
"author": "Andrew Sutherland <sutherlanda@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"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": {
"events": "^3.0.0",
"mapbox-gl": "^0.45.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@types/events": "^1.2.0",
"@types/mapbox-gl": "^0.45.0",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"@types/ws": "^5.1.2",
"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"
}
}