-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
{
"name": "website",
"version": "1.0.0",
"main": "./src/index.tsx",
"repository": "https://github.com/Duobe/website.git",
"author": "Duobe <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"date-fns": "^1.29.0",
"less": "^3.7.1",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"mobx-react-devtools": "^6.0.2",
"qs": "^6.5.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@types/jest": "^23.3.0",
"@types/qs": "^6.5.1",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-router-dom": "^4.2.7",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"gh-pages": "^1.2.0",
"jest": "^23.4.1",
"parcel-bundler": "^1.9.7",
"react-loadable": "^5.4.0",
"react-testing-library": "^4.1.3",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2"
},
"jest": {
"transform": {}
},
"scripts": {
"start": "cross-env NODE_ENV=development parcel ./src/index.html --no-cache",
"build": "cross-env NODE_ENV=production parcel build ./src/index.html --no-cache --no-minify --public-url ./",
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist",
"test": "jest",
"test:watch": "jest --watch"
}
}