-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.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
{
"name": "distilled-test",
"version": "1.0.0",
"description": "Frontend test for Distilled",
"main": "webpack.config.js",
"dependencies": {
"express": "^4.16.3",
"node-fetch": "^2.1.2",
"react": "^16.3.1",
"react-adal": "^0.3.15",
"react-dom": "^16.3.1",
"react-notifications": "^1.4.3",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"copy-webpack-plugin": "^4.4.2",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.2",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"react-test-renderer": "^16.3.2",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --inline --hot",
"server": "node src/server",
"build": "NODE_ENV=production webpack",
"test": "jest"
},
"author": "",
"license": "ISC"
}