forked from learn-javascript-courses/checkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 968 Bytes
/
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
{
"name": "workspace",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/warrenv/checkin.git",
"license": "MIT",
"scripts": {
"lint": "eslint 'pages/**/*.js' 'test/**/*.js'",
"test": "NODE_ENV=test nyc --all --include 'pages/**/*.js' tape 'test/**/*.js' | faucet",
"test:cov": "NODE_ENV=test nyc report --all --reporter=lcov --reporter=text-summary",
"dev": "next",
"build": "next build",
"start": "next start"
},
"devDependencies": {
"enzyme": "^2.8.2",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"faucet": "^0.0.1",
"nyc": "^11.0.2",
"tape": "^4.6.3",
"tape-promise": "^2.0.1",
"testdouble": "^3.1.0"
},
"dependencies": {
"next": "beta",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}