-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
101 lines (101 loc) · 2.42 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
{
"name": "upay-website",
"version": "1.0.0",
"dependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.3",
"express": "^4.16.3",
"isomorphic-unfetch": "^2.0.0",
"next": "^6.0.3",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"cross-env": "^5.2.0",
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "^22.0.1",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"react-addons-test-utils": "15.6.2",
"react-styleguidist": "^7.0.19",
"react-test-renderer": "16.2.0"
},
"scripts": {
"prepush": "npm test",
"test": "npm-run-all test:* --parallel",
"test:lint": "eslint ./",
"test:unit": "cross-env NODE_ENV=test jest",
"watch": "npm-run-all watch:* --parallel",
"watch:test": "npm run test:unit -- --watch",
"dev": "node server",
"build": "next build",
"start": "cross-env NODE_ENV=production node server",
"styleguide": "styleguidist server"
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
]
},
"production": {
"presets": [
"next/babel"
]
},
"test": {
"presets": [
[
"next/babel",
{
"preset-env": {
"modules": "commonjs"
}
}
]
]
}
}
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
},
"description": "[](#contributors)",
"repository": {
"type": "git",
"url": "git+https://github.com/GirlScriptSummerOfCode/Upay.git"
},
"keywords": [
"upay",
"website"
],
"author": "GSSoC and Upay Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/GirlScriptSummerOfCode/Upay/issues"
},
"homepage": "https://github.com/GirlScriptSummerOfCode/Upay#readme"
}