forked from devhubapp/devhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "@devhub/landing",
"version": "0.102.0",
"private": false,
"main": "dist/index.js",
"scripts": {
"clean": "shx rm -f *.tsbuildinfo && shx rm -rf dist && mkdirp dist",
"compile": "cd .",
"deploy": "yarn compile && yarn now",
"export": "yarn run-scripts && next build && next export",
"format": "prettier --write '{.,src,pages}/**/*.{js,jsx,ts,tsx,json}'",
"lint": "eslint src",
"now": "now",
"postinstall": "yarn run-scripts",
"prepare": "cd .",
"run-scripts": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./src/scripts/refresh-cached-public-plans",
"start": "next -p 3001"
},
"dependencies": {
"@devhub/core": "npm:@brunolemos/[email protected]",
"@zeit/next-css": "1.0.1",
"autoprefixer": "9.6.4",
"classnames": "2.2.6",
"isomorphic-unfetch": "3.1.0",
"lodash": "4.17.20",
"next": "10.0.3",
"next-transpile-modules": "6.0.0",
"qs": "6.9.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-stripe-elements": "5.0.1",
"tailwindcss": "1.1.2"
},
"devDependencies": {
"@types/classnames": "2.2.11",
"@types/lodash": "4.14.165",
"@types/node": "14.14.11",
"@types/qs": "6.9.5",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-stripe-elements": "1.3.5",
"@types/stripe-v3": "3.1.9",
"@types/styled-jsx": "2.2.8",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"eslint": "7.29.0",
"eslint-config-nextjs": "1.0.7",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"mkdirp": "1.0.4",
"node-fetch": "2.6.1",
"now": "21.0.1",
"prettier": "2.3.1",
"shx": "0.3.3",
"ts-node": "9.1.1",
"typescript": "4.3.4"
},
"engines": {
"node": ">=12"
}
}