This repository has been archived by the owner on Jul 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.05 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
82
83
84
85
86
87
{
"name": "sticker_migrator",
"license": "MIT",
"private": true,
"scripts": {
"test": "npm run test:lint && npm run test:jest",
"test:lint": "./node_modules/.bin/eslint -c .eslintrc.yml --ext=js resources/",
"test:jest": "cross-env NODE_ENV=test ./node_modules/.bin/jest --coverage",
"clear": "rm -rf ./public/packs/*",
"start": "laravel-echo-server start",
"watch-poll": "npm run watch -- --watch-poll",
"watch": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --watch --progress --hide-modules",
"dev": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --progress --hide-modules",
"prod": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --no-progress --hide-modules",
"postinstall": "npm rebuild node-sass"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nijipico/sticker_migrator.git"
},
"dependencies": {
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"detect-passive-events": "^1.0.4",
"dotenv": "^5.0.0",
"emoji-mart": "^2.4.2",
"escape-html": "^1.0.3",
"eslint-import-resolver-webpack": "^0.8.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"json-loader": "^0.5.7",
"laravel-echo": "^1.3.5",
"lodash": "^4.17.4",
"node-sass": "^4.7.2",
"offline-plugin": "^4.9.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-immutable-proptypes": "^2.1.0",
"react-immutable-pure-component": "^1.1.1",
"react-intl": "^2.4.0",
"react-motion": "^0.5.2",
"react-overlays": "^0.8.3",
"react-redux": "^5.0.6",
"react-redux-loading-bar": "^3.1.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-scroll-4": "^1.0.0-beta.1",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-manifest-plugin": "^1.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"eslint": "^4.16.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.1.4",
"react-test-renderer": "^16.2.0"
}
}