-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
{
"name": "react-modele",
"homepage": "./",
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@babel/register": "*",
"autoprefixer": "*",
"babel-eslint": "*",
"babel-loader": "*",
"chai": "*",
"css-loader": "*",
"enzyme": "*",
"enzyme-adapter-react-16": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-import-resolver-webpack": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"file-loader": "*",
"html-webpack-plugin": "*",
"ignore-styles": "*",
"mini-css-extract-plugin": "*",
"mocha": "*",
"node-sass": "*",
"optimize-css-assets-webpack-plugin": "*",
"postcss": "*",
"postcss-loader": "*",
"sass-loader": "*",
"style-loader": "*",
"stylelint": "*",
"stylelint-config-recommended": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"scripts": {
"test": "mocha --require tests/.setup.js tests/**/*.test.js",
"test:watch": "mocha --watch --require tests/.setup.js tests/**/*.test.js",
"start": "webpack-dev-server",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules",
"build:dev": "NODE_ENV=development webpack",
"build:dev:win": "set NODE_ENV=development && webpack",
"build:prod": "NODE_ENV=production webpack --mode production",
"build:prod:win": "set NODE_ENV=production && webpack --mode production",
"save-deps": "node updateDeps.js"
},
"dependencies": {
"@tippy.js/react": "^2.2.3",
"animate.css": "^3.7.2",
"aos": "^2.3.4",
"axios": "^0.19.0",
"babel-preset-es2015": "^6.24.1",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-redux": "^7.1.0",
"react-switch": "^5.0.1",
"redux": "^4.0.4",
"terser-webpack-plugin": "^2.0.1"
}
}