This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.43 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "projection",
"description": "Final project for creative programming.",
"author": "austin ce <[email protected]>",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node --max-old-space-size=8192 server/index.js",
"start:dev": "cross-env NODE_ENV=dev node --max-old-space-size=8192 server/index.js",
"start:dev:client": "cross-env NODE_ENV=dev webpack-dev-server",
"clean": "rimraf dist && rimraf server/logs",
"build": "webpack",
"lint": "eslint ./server && eslint ./client",
"lint:fix": "eslint ./server --fix && eslint ./client --fix",
"rebuild-deps:node:opencv": "npm rebuild opencv --build-from-source",
"rebuild-deps:node:sass": "npm rebuild node-sass --force",
"rebuild-deps:node": "yarn run rebuild-deps:node:opencv && yarn run rebuild-deps:node:sass"
},
"dependencies": {
"@std/esm": "^0.17.3",
"babel-polyfill": "^6.26.0",
"commander": "^2.12.2",
"cross-env": "^5.1.1",
"express": "^4.16.2",
"express-winston": "^2.4.0",
"lodash": "^4.17.4",
"maptastic": "https://github.com/austince/maptasticjs",
"opencv": "^6.0.0",
"p5": "0.5.16",
"rxjs": "^5.5.2",
"socket.io": "^2.5.0",
"socket.io-client": "^2.0.4",
"source-map-support": "^0.5.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/express": "^4.0.39",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"nodemon": "^1.12.1",
"prettier": "^1.8.2",
"progress-bar-webpack-plugin": "^1.10.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"typescript": "^2.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.7",
"webpack-split-by-path": "^2.0.0"
},
"@std/esm": {
"cjs": true,
"esm": "js",
"await": true
}
}