-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.56 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
{
"name": "Project-Palette",
"version": "1.0.0",
"description": "A utility for tracking colors used in a project.",
"main": "server.js",
"repository": "git@github.com:l4nk332/Project-Palette.git",
"author": "Ian Jabour",
"license": "MIT",
"scripts": {
"start:dev": "NODE_ENV=development webpack-dev-server --open --config webpack.dev.js",
"start:fresh": "rm -rf node_modules; rm yarn.lock; yarn; yarn start",
"build:prod": "NODE_ENV=production webpack --config webpack.prod.js",
"build:analyze": "NODE_ENV=production webpack --config webpack.analyze.js",
"server:dev": "node server.js",
"server:prod": "NODE_ENV=production node server.js",
"test": "jest --coverage",
"lint": "./node_modules/.bin/eslint/ ."
},
"dependencies": {
"axios": "^0.16.2",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.17.2",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"firebase-admin": "^5.8.1",
"fs-extra": "^3.0.1",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"npm": "^6.1.0",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.7.0-alpha.2",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^16.7.0-alpha.2",
"react-icons": "^2.2.5",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"sass-resources-loader": "^1.3.1",
"shortid": "^2.2.8",
"tinycolor2": "^1.4.1",
"uglifyjs-webpack-plugin": "^2.1.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.4",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^20.0.4",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.5.3",
"react-media": "^1.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "3.1.1",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}