This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.78 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
{
"name": "state-of-the-front-end-industrialisation",
"version": "1.0.1",
"author": "Guillaume AMAT <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"lint-js": "eslint --ext .js,.jsx,.json .",
"lint-css": "stylelint .",
"lint-format": "prettier --list-different '**/*.{js,jsx,json,md,css,scss}'",
"format": "prettier --write '**/*.{js,jsx,json,md,css,scss}'",
"deploy": "npm run clean & npm run build && surge -p .",
"export": "spectacle-renderer --delay 3000",
"start": "cross-env NODE_ENV=development node server.js",
"precommit": "lint-staged"
},
"dependencies": {
"normalize.css": "7.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"spectacle": "^4.0.0",
"spectacle-renderer": "^0.0.3",
"styled-components": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-react": "^7.9.1",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"is-buffer": "^1.1.5",
"jest": "^23.2.0",
"lint-staged": "^7.2.0",
"markdown-loader": "^2.0.1",
"node-libs-browser": "^2.0.0",
"prettier": "^1.13.5",
"prop-types": "^15.6.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.1.1",
"react-transform-catch-errors": "^1.0.2",
"redbox-react": "^1.5.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"stylelint": "^9.3.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1",
"surge": "latest",
"url-loader": "^0.6.2",
"webpack": "3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.3",
"webpack-hot-middleware": "^2.20.0"
}
}