forked from teacherfund/TeacherFund_next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "create-next-example-app",
"scripts": {
"now-build": "next build && next export -o dist",
"dev": "next -p 3001",
"build": "next build",
"start": "next start",
"lint": "standard --fix",
"test": "ava --serial"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"next": "^7.0.3",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5",
"react-motion-drawer": "^3.1.0",
"react-stripe-elements": "^2.0.1"
},
"devDependencies": {
"@babel/register": "^7.6.2",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.5.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^1.3.1",
"sinon": "^7.5.0",
"standard": "^13.1.0",
"tachyons-sass": "^4.9.5"
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"require": [
"./test/_register.js"
]
}
}