-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.64 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.64 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
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
{
"name": "skip",
"version": "1.0.0",
"description": "Skip PWA",
"main": "index.js",
"author": "Rafael Campos",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"test": "jest --watch --coverage --config ./jest.config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "yarn run clean && yarn run build:webpack",
"build:webpack": "NODE_ENV=production yarn run webpack -p --colors --progress --display-error-details",
"build:analyze": "NODE_ENV=production WEBPACK_ANALYZE=true yarn run webpack -p --colors --progress --display-error-details",
"dev": "webpack-dev-server",
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"@types/enzyme": "^3.1.9",
"@types/express": "^4.11.1",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.7",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-router-dom": "^4.2.4",
"awesome-typescript-loader": "^4.0.1",
"axios": "^0.21.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-emotion": "^9.0.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"emotion": "^9.0.2",
"emotion-theming": "^9.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"grid-emotion": "^3.2.0",
"grid-styled": "^3.2.1",
"html-webpack-plugin": "^3.0.6",
"image-webpack-loader": "^4.2.0",
"jest": "^22.4.2",
"jest-webpack-resolver": "^0.3.0",
"moment": "^2.21.0",
"prettier": "^1.11.1",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^9.0.2",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-axios-middleware": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"storybook": "^1.0.0",
"styled-system": "^2.2.1",
"tinycolor": "^0.0.1",
"ts-jest": "^22.4.1",
"ts-loader": "^4.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2",
"viewport-units-buggyfill": "^0.6.2",
"webapp-webpack-plugin": "^1.1.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-middleware": "^3.0.1",
"webpack-dev-server": "^3.1.1",
"webpack-pwa-manifest": "^3.6.2",
"workbox-sw": "^3.0.0",
"workbox-webpack-plugin": "^3.0.0"
},
"devDependencies": {
"@storybook/addons": "^3.3.15",
"@storybook/react": "^3.3.15"
}
}