forked from stacks-archive/app.co
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.74 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
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
97
98
99
100
101
102
{
"name": "app.co-www",
"description": "The website for app.co",
"version": "1.0.0",
"author": "The Blockstack Team",
"bugs": {
"url": "https://github.com/blockstackpbc/app.co/issues"
},
"dependencies": {
"@atlaskit/checkbox": "^2.0.2",
"@atlaskit/field-text": "^5.0.2",
"@atlaskit/modal-dialog": "^4.0.4",
"@atlaskit/select": "^2.0.1",
"@babel/polyfill": "7.0.0-beta.44",
"@babel/register": "7.0.0-beta.44",
"async": "^2.6.0",
"cheerio": "^1.0.0-rc.2",
"color-name": "^1.1.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"fast-csv": "^2.4.1",
"googleapis": "^29.0.0",
"isomorphic-unfetch": "^2.0.0",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"mdi-react": "^3.3.0",
"next": "^6.0.0",
"pg": "^7.4.1",
"polished": "^1.9.2",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-lorem-component": "^0.13.0",
"request-promise": "^4.2.2",
"sequelize": "^4.37.6",
"sequelize-cli": "^4.0.0",
"styled-components": "^3.2.6",
"twitter": "^1.7.1"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"babel-loader": "7",
"babel-plugin-styled-components": "^1.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-scope": "^3.7.1",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"regenerator-runtime": "^0.11.1",
"request": "^2.85.0",
"sepia": "^2.0.2"
},
"homepage": "https://github.com/blockstackpbc/app.co#readme",
"keywords": [
"dapps"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/blockstackpbc/app.co.git"
},
"scripts": {
"build": "next build",
"db:create": "sequelize db:create",
"db:migrate": "sequelize db:migrate",
"dev": "node server.js",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"start": "NODE_ENV=production node server.js",
"test": "VCR_MODE=cache NODE_ENV=test jest",
"test-watch": "VCR_MODE=cache NODE_ENV=test jest --watch",
"heroku-postbuild": "next build"
},
"jest": {
"globals": {
"NODE_ENV": "test"
},
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"nodemonConfig": {
"verbose": true,
"ignore": [
".next/*",
".next",
"pages/*"
]
}
}