-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "hi-forms",
"version": "1.0.0",
"description": "HiCTO Forms",
"license": "ISC",
"private": true,
"main": "index.js",
"scripts": {
"dev": "node index.js",
"dev:api": "micro-dev api",
"dev:web": "API_URL=https://forms.hicto.tech next web",
"test:api": "tape api/tests/*.js",
"lint": "eslint .",
"build": "API_URL=https://forms.hicto.tech next build web",
"start": "NODE_ENV=production node index.js",
"deploy": "now -T hicto && now alias -T hicto"
},
"dependencies": {
"@google-cloud/firestore": "^0.13.0",
"axios": "^0.18.0",
"htmlescape": "^1.1.1",
"material-ui": "^1.0.0-beta.38",
"material-ui-icons": "^1.0.0-beta.36",
"micro": "^9.1.4",
"micro-cors": "^0.1.0",
"micro-dev": "^2.2.2",
"microrouter": "^3.1.1",
"multiparty": "^4.1.3",
"next": "^5.0.0",
"react": "^16.3.0-alpha.2",
"react-dom": "^16.3.0-alpha.2"
},
"devDependencies": {
"babel-eslint": "^8.2",
"eslint": "^4.19",
"eslint-config-standard": "^11.0",
"eslint-config-standard-react": "^6.0",
"eslint-plugin-import": "^2.9",
"eslint-plugin-node": "^6.0",
"eslint-plugin-promise": "^3.7",
"eslint-plugin-react": "^7.7",
"eslint-plugin-standard": "^3.0"
},
"engines": {
"node": "9.x.x"
}
}