-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
75
76
{
"name": "perspective",
"version": "1.0.0",
"description": "Mind map with perspective",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"compile": "ts-node -P tsconfig.json ./server/index.ts",
"start:server": "yarn build:server && pm2 start lib/index.js",
"start:server:watch": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack",
"build:server": "tsc --outDir lib server/index.ts",
"type-check": "tsc server/index.ts --noEmit",
"type-check:watch": "yarn type-check -- --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:swapkats/project-perspective.git"
},
"keywords": [
"mind",
"map",
"3d",
"threejs",
"webgl"
],
"author": "Swapnil Singh",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"html-webpack-plugin": "^4.3.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"apollo-boost": "^0.4.9",
"apollo-server": "^2.15.1",
"global": "^4.4.0",
"graphql": "^14.7.0",
"neo4j-driver": "^4.1.0",
"neo4j-graphql-js": "^2.14.3",
"nodemon": "^2.0.4",
"pm2": "^4.4.0",
"three": "^0.118.3",
"lit-element": "^2.3.1",
"ts-node": "^8.10.2",
"tsc": "^1.20150623.0"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"server"
],
"exec": "yarn compile",
"ext": "ts"
}
}