-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.09 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
{
"scripts": {
"start": "v4 start",
"i18n": "v4 i18n download",
"build": "v4 build",
"test": "v4 test",
"format": "prettier"
},
"tradeshift": {
"entrypoints": [],
"nonstrictModules": false
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --color",
"prettier --write --use-tabs --single-quote --print-width 100 --color",
"git add"
],
"*.{css,less,json}": [
"prettier --write --use-tabs --single-quote --print-width 100 --color",
"git add"
]
},
"dependencies": {
"@tradeshift/tradeshift-ui": "10.0.28",
"@tradeshift/v4": "13.3.0",
"@types/express": "^4.16.0",
"@types/react": "^16.4.14",
"@types/react-test-renderer": "^16.0.2",
"express": "^4.16.3",
"react": "^16.5.2",
"react-test-renderer": "^16.5.2",
"typescript": "3.0.3",
"unexpected": "^10.39.0",
"unexpected-express": "^11.0.0"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"eslint": "5.6.0",
"eslint-config-tradeshift": "6.0.1",
"husky": "1.0.0",
"lint-staged": "7.3.0",
"prettier": "1.14.3"
}
}