-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.03 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
{
"name": "kinte.sh",
"version": "1.0.0",
"description": "My site and a playground to experiment things.",
"repository": "https://kintesh@github.com/kintesh/kinte.sh.git",
"author": "Kintesh <i.am@kinte.sh>",
"license": "MIT",
"scripts": {
"start": "babel-node ./server/index.js",
"start:debug:express": "DEBUG=express:* babel-node ./server/index.js",
"start:production": "NODE_ENV=production node ./build/server.js",
"prebuild": "rm -rf build",
"build": "yarn test && yarn build:client && yarn build:server",
"build:client": "NODE_ENV=production webpack --config ./config/webpack.config.client",
"build:server": "NODE_ENV=production webpack --config ./config/webpack.config.server",
"lint": "eslint ./config ./server ./src",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"express": "^4.16.2",
"history": "^4.7.2",
"nord": "^0.2.1",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"redux": "^3.7.2"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.0.4",
"node-sass": "^4.7.2",
"raf": "^3.4.0",
"react-hot-loader": "^3.1.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./src/helpers/testSetup"
}
}