-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.08 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
{
"name": "pt-estimator",
"version": "0.0.1",
"description": "estimator",
"main": "client/index.js",
"repository": "git@github.com:mojotech/pt-estimator.git",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.5.4",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"scripts": {
"develop": "concurrently \"yarn:type-check:watch\" \"yarn:start\" \"yarn:server\"",
"server": "./server.sh",
"start": "node client.js",
"build": "cross-env NODE_ENV=production parcel build client/index.html --public-url .",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch --preserveWatchOutput",
"format": "prettier --config ./.prettierrc --write \"client/**/*.{ts,tsx}\"",
"format:check": "yarn prettier-check --config ./.prettierrc \"client/**/*.{ts,tsx}\"",
"lint": "tslint -c tslint.json 'client/**/*.{ts,tsx}'",
"lint:fix": "tslint -c tslint.json --fix 'client/**/*.{ts,tsx}'",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"@svgr/parcel-plugin-svgr": "^4.3.2",
"@types/node": "^12.0.10",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.18",
"graphql": "^14.3.1",
"jwt-decode": "^2.2.0",
"react": "16.8.6",
"react-cookie": "^4.0.1",
"react-dom": "^16.8.6",
"react-google-login": "^5.0.4",
"react-native": "^0.60.4",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"styled-components": "^4.3.2",
"urql": "^1.1.3"
}
}