-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.15 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.15 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "crypto",
"version": "0.0.1",
"description": "see info about coins",
"private": true,
"main": "index.js",
"scripts": {
"analyze": "ANALYZE=1 next build",
"analyze:server": "ANALYZE_SERVER=1 next build",
"build": "next build",
"dev": "nodemon server/server.js",
"dev:inspect": "node --inspect server/server.js",
"deploy:qa": "now --local-config now.json",
"deploy:prod": "now --local-config now-production.json",
"docker:build": "docker build --build-arg NPM_TOKEN=${NPM_TOKEN} -t crypto .",
"docker:run": "docker run -e \"NPM_TOKEN=${NPM_TOKEN}\" --rm --name crypto -p 3000:3000 crypto",
"docker:stop": "docker stop crypto",
"alias:prod": "now alias --local-config=now-production.json",
"start": "NODE_ENV=production node server/server.js",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"test": "jest",
"test:coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TangoGroup/crypto.git"
},
"author": "The Gloo Web Team",
"license": "UNLICENSED",
"homepage": "https://github.com/TangoGroup/crypto#readme",
"dependencies": {
"@emotion/core": "10.0.7",
"@gloojs/apollo-server": "1.0.0",
"@gloojs/bass-ui": "1.0.9",
"@gloojs/next-apollo": "1.4.0",
"@gloojs/next-express": "1.0.2",
"@gloojs/semantic-ui-theme": "1.0.6",
"@gloojs/ui-components": "1.2.0",
"@okgrow/graphql-scalars": "0.4.2",
"@zeit/next-css": "1.0.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"apollo-cache-inmemory": "1.5.1",
"apollo-client": "2.5.1",
"apollo-datasource-rest": "0.2.1",
"apollo-link": "1.2.11",
"apollo-link-http": "1.5.14",
"apollo-server-express": "2.1.0",
"compression": "1.7.3",
"dotenv": "6.1.0",
"express": "4.16.4",
"express-robots-txt": "0.4.0",
"glob": "7.1.3",
"graphql": "14.2.1",
"graphql-tools": "4.0.3",
"hoist-non-react-statics": "3.0.1",
"lodash": "4.17.11",
"next": "8.1.0",
"next-images": "1.0.1",
"node-fetch": "2.3.0",
"prop-types": "15.6.2",
"react": "16.8.6",
"react-apollo": "2.5.4",
"react-dom": "16.8.4",
"semantic-ui-react": "0.83.0",
"winston": "3.1.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/traverse": "7.1.0",
"@babel/types": "7.1.2",
"@gloojs/eslint-config": "1.0.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.2.6",
"babel-loader": "8.0.4",
"babel-plugin-emotion": "9.2.11",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"eslint": "5.7.0",
"eslint-plugin-cypress": "2.0.1",
"eslint-plugin-disable": "1.0.3",
"eslint-plugin-emotion": "10.0.7",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.25.1",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-hooks": "1.6.0",
"jest": "23.6.0",
"jest-emotion": "10.0.7",
"nodemon": "1.18.4",
"webpack-bundle-analyzer": "2.13.1"
}
}