-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·84 lines (84 loc) · 2.72 KB
/
package.json
File metadata and controls
executable file
·84 lines (84 loc) · 2.72 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
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
77
78
79
80
81
82
83
84
{
"name": "react-fullstack-boilerplate",
"version": "1.0.0",
"description": "Boilerplate with React, Graphql, Typescript, Codegen, MongoDB, NextJS, Parcel, Linaria",
"main": "./src/main.js",
"repository": "https://github.com/jackypan1989/react-fullstack-boilerplate",
"author": "jackypan1989 <jackypan1989@gmail.com>",
"license": "MIT",
"scripts": {
"client:watch": "parcel watch ./src/client/index.html --public-url ./",
"client:build": "parcel build ./src/client/index.html --public-url ./",
"server:watch": "tsnd --respawn ./src/server/index.ts",
"dev": "run-p tsc:watch client:watch server:watch",
"build": "run-p tsc client:build",
"electron": "run-s dev electron:watch",
"electron:build": "parcel build src/main.ts --public-url ./ --target=electron",
"electron:watch": "parcel watch src/main.ts --public-url ./ --target=electron",
"electron:dev": "run-p electron:watch electron:start",
"electron:start": "electron dist/main.js",
"electron:pack": "electron-builder --dir",
"electron:dist": "electron-builder",
"prettify": "prettier --write './src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc --noEmit",
"tsc:watch": "tsc --noEmit --watch"
},
"build": {
"productName": "SOV CRM",
"appId": "org.sov.crm",
"files": [
"src/**"
]
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/node": "^11.13.0",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"babel-plugin-import": "^1.11.0",
"electron": "^4.1.3",
"electron-builder": "^20.39.0",
"electron-reload": "^1.4.0",
"husky": "^1.3.1",
"jest": "^24.6.0",
"less": "^2.7.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.16.4",
"react-hot-loader": "^4.8.2",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^6.0.4",
"ts-node-dev": "^1.0.0-pre.32",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.1"
},
"dependencies": {
"@hot-loader/react-dom": "^16.8.6",
"antd": "^3.16.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"apollo-server": "^2.4.8",
"express": "^4.16.4",
"graphql": "^14.2.1",
"mongoose": "^5.4.21",
"next": "^8.0.4",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-apollo": "^2.5.3",
"react-apollo-hooks": "^0.4.4",
"react-dom": "^16.8.6"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
}
}