-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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
{
"name": "xal",
"version": "2.0.2",
"description": "Xuatz Anime List (v2)",
"main": "server.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"test:watch": "npm run test -- --watch",
"test:reporter": "node ./node_modules/mocha/bin/mocha --reporter progress --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"build": "webpack -p --config ./webpack.prod.config.js",
"dev": "npm-run-all --parallel start:dev test:reporter lint:watch",
"start:dev": "webpack-dev-server",
"start:prod": "node server.js",
"start": "npm run build && npm run start:prod",
"build:prod": "webpack -p --config ./webpack.prod.config.js",
"lint": "node_modules/.bin/esw webpack.config.* src",
"lint:watch": "npm run lint -- --watch"
},
"author": "xuatz",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.1",
"concurrently": "^2.0.0",
"cookie-parser": "^1.4.3",
"css-loader": "0.23.1",
"express": "^4.13.4",
"html-webpack-plugin": "^2.16.0",
"lodash": "^4.12.0",
"moment": "^2.13.0",
"npm-run-all": "^2.1.1",
"parse": "^1.8.5",
"parse-express-cookie-session": "0.0.3",
"parse-express-https-redirect": "0.0.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.1",
"react-portal-tooltip": "^1.1.1",
"react-redux": "^4.4.5",
"react-router": "2.4.0",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"style-loader": "0.13.1",
"webpack": "1.13.0"
},
"devDependencies": {
"chai": "^3.5.0",
"deep-freeze": "0.0.1",
"eslint": "2.9.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-react": "5.0.1",
"eslint-watch": "2.1.11",
"expect": "^1.20.1",
"mocha": "^2.4.5",
"tape": "^4.5.1",
"webpack-dev-server": "1.13.0"
}
}