-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
53 lines (53 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
{
"name": "react-surveyman",
"version": "0.0.1",
"description": "React Surveyman is a browser-based survey builder meant to be used with SurveyMan.",
"main": "./lib/app.js",
"scripts": {
"start": "node node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --port 8090",
"build": "NODE_ENV='production' webpack -p",
"release": "./release",
"test": "mocha --compilers js:babel/register tests",
"lint": "node node_modules/eslint/bin/eslint.js js"
},
"author": "Prakhar Srivastav",
"license": [
{
"type": "BSD",
"url": "https://github.com/prakhar1989/react-surveyman/blob/master/LICENSE"
}
],
"repository": "https://github.com/prakhar1989/react-surveyman",
"dependencies": {
"babel": "^5.4.4",
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"classnames": "^2.1.2",
"immutable": "^3.7.3",
"left-pad": "^0.0.3",
"lockr": "^0.8.2",
"lodash": "^3.9.3",
"loglevel": "^1.4.0",
"node-libs-browser": "^0.5.0",
"react": "^0.13.3",
"react-bootstrap": "0.20.1",
"react-dnd": "^1.1.3",
"react-dropzone": "^1.2.4",
"react-select": "^0.4.9",
"react-tag-input": "1.0.2",
"reflux": "^0.2.7",
"surveyman": "^0.1.3",
"underscore": "^1.8",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.8.2"
},
"devDependencies": {
"babel-eslint": "^3.1.23",
"css-loader": "^0.15.5",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"extract-text-webpack-plugin": "^0.8.2",
"mocha": "^2.2.5",
"style-loader": "^0.12.3"
}
}