-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "tom",
"version": "1.0.0",
"description": "A simple bookmark collector",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build:dev": "webpack --config=./config/webpack.config.js --progress",
"build:prod": "webpack --config=./config/webpack.config.js -p",
"start": "npm run build:prod && node dist/index",
"dev": "npm run build:dev && node dist/index"
},
"author": "rbs392",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"node-sass": "^3.11.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "2.1.0-beta.25"
},
"dependencies": {
"body-parser": "^1.15.2",
"config": "^1.24.0",
"express": "^4.14.0",
"mongodb": "^2.2.11",
"react": "^15.3.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0"
}
}